From 9467f040085effb902e86a161c7c2f47ff4aaf0e Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Sun, 30 Apr 2023 21:38:54 +0200 Subject: [PATCH] pkg/semtech-loramac/doc: sx1261 and sx1262 are also supported --- pkg/semtech-loramac/doc.txt | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkg/semtech-loramac/doc.txt b/pkg/semtech-loramac/doc.txt index e2a76386fc..c10067c48c 100644 --- a/pkg/semtech-loramac/doc.txt +++ b/pkg/semtech-loramac/doc.txt @@ -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 * ```