zephyr/modules/Kconfig.loramac-node
Andreas Sandberg 6a4ebe5949 drivers: lora: Add SX126x LoRa radio support
Add support for the SX126x series of LoRa radios using the
LoRaMAC-Node HAL.

This driver currently makes the following assumptions:

  * DIO1 is used as an interrupt line.

  * There is an RF switch selecting between the TX and RX ports and
    that switch is controlled by DIO2.

  * There is either no TCXO or the TCXO is controlled by DIO3.

Specifically, the limitations above mean that modules that use GPIOs
to control the RF switch are currently not supported. Support for such
modules would need changes to the LoRaMAC-Node code.

Signed-off-by: Andreas Sandberg <andreas@sandberg.pp.se>
2020-07-02 08:32:37 -04:00

24 lines
484 B
Plaintext

#
# Copyright (c) 2019 Manivannan Sadhasivam
#
# SPDX-License-Identifier: Apache-2.0
#
config HAS_SEMTECH_LORAMAC
bool "Semtech LoRaMac Stack"
help
This option enables the use of Semtech's LoRaMac stack
config HAS_SEMTECH_RADIO_DRIVERS
bool "Semtech LoRa Radio Drivers"
help
This option enables the use of Semtech's Radio drivers
config HAS_SEMTECH_SX1276
bool
depends on HAS_SEMTECH_RADIO_DRIVERS
config HAS_SEMTECH_SX126X
bool
depends on HAS_SEMTECH_RADIO_DRIVERS