Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

semtech-loramac: extend list of supported radio with sx1261, sx1262 and sx1268 #19525

Merged
merged 3 commits into from
May 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/lorawan/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Use the `BOARD`, `DRIVER` and `LORA_REGION` make variables to adapt the applicat
to your hardware setup and region of use:

- `BOARD` can be one of the nucleo-64 boards
- `DRIVER` can be either `sx1276` or `sx1272`
- `DRIVER` can be either `sx1261`, `sx1262`, `sx1268`, `sx1276` or `sx1272`
- `LORA_REGION` can be `EU868`, `US915`, etc (see LoRaWAN regional parameters for
details).

Expand Down
9 changes: 6 additions & 3 deletions pkg/semtech-loramac/doc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,13 @@
*
* # Importing this package in an application
*
* This package only works with Semtech SX1272 and SX1276 radio devices. Thus,
* in order to use it properly, the application `Makefile` must import the
* corresponding device driver:
* This package works with Semtech SX1261, SX1262, SX1268, SX1272 and SX1276 radio
* devices. Thus, in order to use it properly, the application `Makefile` must
* import the corresponding device driver:
* ```mk
* USEMODULE += sx1261 # for a SX1261 radio device
* USEMODULE += sx1262 # for a SX1262 radio device
* USEMODULE += sx1268 # for a SX1268 radio device
* USEMODULE += sx1272 # for a SX1272 radio device
* USEMODULE += sx1276 # for a SX1276 radio device
* ```
Expand Down
5 changes: 3 additions & 2 deletions tests/pkg_semtech-loramac/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@ use the `set`/`get` commands in test application shell.

## Building the application

The default parameters for the Semtech SX1272/SX1276 radios works as-is with
The default parameters for the Semtech SX1261/SX1262/SX1272/SX1276 radios works as-is with
STM32 Nucleo-64 boards and MBED LoRa shields
([SX1276](https://os.mbed.com/components/SX1276MB1xAS/) or
([SX1261/SX1262](https://os.mbed.com/components/SX126xMB2xAS/),
[SX1276](https://os.mbed.com/components/SX1276MB1xAS/) or
[SX1272](https://os.mbed.com/components/SX1272MB2xAS/)). You can also use the
ST [b-l072z-lrwan1](http://www.st.com/en/evaluation-tools/b-l072z-lrwan1.html)
board.
Expand Down