mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-27 09:55:22 +00:00
Add support for Semtech SX1276 LoRa Modem. Signed-off-by: Manivannan Sadhasivam <mani@kernel.org>
29 lines
513 B
Plaintext
29 lines
513 B
Plaintext
#
|
|
# Copyright (c) 2019 Manivannan Sadhasivam
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# Top-level configuration file for LORA drivers.
|
|
|
|
menuconfig LORA
|
|
bool "LoRa support"
|
|
help
|
|
Include LoRa drivers in the system configuration.
|
|
|
|
if LORA
|
|
|
|
module = LORA
|
|
module-str = lora
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
config LORA_INIT_PRIORITY
|
|
int "LoRa initialization priority"
|
|
default 90
|
|
help
|
|
System initialization priority for LoRa drivers.
|
|
|
|
source "drivers/lora/Kconfig.sx1276"
|
|
|
|
endif # LORA
|