1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-28 23:49:47 +01:00

pkg/semtech-loramac/doc: sx1261 and sx1262 are also supported

This commit is contained in:
Alexandre Abadie 2023-04-30 21:38:54 +02:00
parent 7213c0ad3e
commit 9467f04008
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -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
* ```