mirror of
https://github.com/apache/nuttx.git
synced 2026-03-26 18:23:50 +08:00
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>
34 lines
795 B
Plaintext
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
|