3ce8540f3a
Add initial support for LoRaWAN based on Semtech's loramac-node library. Current implementation only supports OTAA config and sending data to LoRaWAN server like ThingsNetwork. While at it, this commit also moves the "loramac-node" library definition from drivers/lora to subsys/lorawan. This is required because, subsys/lorawan gets processed before drivers/lora and that creates issue while building. Signed-off-by: Manivannan Sadhasivam <mani@kernel.org>
30 lines
659 B
Plaintext
30 lines
659 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_SOFT_SE
|
|
bool "Semtech Secure Element software implementation"
|
|
help
|
|
This option enables the use of Semtech's Secure Element
|
|
software implementation
|
|
|
|
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
|