Files
nuttx/drivers/wireless/lpwan/Kconfig
Alan Carvalho de Assis 667165db46 drivers/sx127x: Move Kconfig and add bitrate options
This commit moves sx127x Kconfig to lpwan/sx127x/ to follow the
same logic used by sx126x and adds the configuration to support
different bitrate (the default 4800 is fine tuned for LORA).

Signed-off-by: Alan C. Assis <acassis@gmail.com>
2026-01-05 14:59:32 -03:00

34 lines
795 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
if DRIVERS_LPWAN
config LPWAN_RN2XX3
bool "Microchip RN2xx3 driver support"
default n
depends on SERIAL
---help---
Enable driver support for the RN2xx3 LoRa radio transceiver family.
config LPWAN_SX126X
bool "SX126X Low Power Long Range transceiver support"
default n
select SPI
---help---
This options adds driver support for the Samtech SX126X chip.
source "drivers/wireless/lpwan/sx126x/Kconfig"
config LPWAN_SX127X
bool "SX127X Low Power Long Range transceiver support"
default n
select SPI
---help---
This options adds driver support for the Samtech SX127X chip.
source "drivers/wireless/lpwan/sx127x/Kconfig"
endif # DRIVERS_LPWAN