1# 2# Copyright (c) 2019 Manivannan Sadhasivam 3# 4# SPDX-License-Identifier: Apache-2.0 5# 6 7config ZEPHYR_LORAMAC_NODE_MODULE 8 bool 9 10config HAS_SEMTECH_RADIO_DRIVERS 11 bool "Semtech LoRa Radio Drivers" 12 help 13 This option enables the use of Semtech's Radio drivers 14 15config HAS_SEMTECH_SX1272 16 bool 17 select HAS_SEMTECH_RADIO_DRIVERS 18 19config HAS_SEMTECH_SX1276 20 bool 21 select HAS_SEMTECH_RADIO_DRIVERS 22 23config HAS_SEMTECH_SX126X 24 bool 25 select HAS_SEMTECH_RADIO_DRIVERS 26 27config HAS_SEMTECH_LORAMAC 28 bool "Semtech LoRaMac Stack" 29 depends on HAS_SEMTECH_RADIO_DRIVERS 30 help 31 This option enables the use of Semtech's LoRaMac stack 32 33config HAS_SEMTECH_SOFT_SE 34 bool "Semtech Secure Element software implementation" 35 depends on HAS_SEMTECH_LORAMAC 36 help 37 This option enables the use of Semtech's Secure Element 38 software implementation 39