mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Merge #19525
19525: semtech-loramac: extend list of supported radio with sx1261, sx1262 and sx1268 r=maribu a=aabadie Co-authored-by: Alexandre Abadie <alexandre.abadie@inria.fr>
This commit is contained in:
commit
3be7c9551b
@ -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).
|
||||
|
||||
|
@ -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
|
||||
* ```
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user