2019-09-01 00:44:44 +08:00
|
|
|
#
|
|
|
|
# Copyright (c) 2019 Manivannan Sadhasivam
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
|
|
|
|
# Top-level configuration file for LORA drivers.
|
|
|
|
|
|
|
|
menuconfig LORA
|
2020-04-24 01:22:14 +08:00
|
|
|
bool "LoRa support [EXPERIMENTAL]"
|
2020-02-04 20:32:24 +08:00
|
|
|
depends on NEWLIB_LIBC
|
2019-09-01 00:44:44 +08:00
|
|
|
help
|
|
|
|
Include LoRa drivers in the system configuration.
|
|
|
|
|
|
|
|
if LORA
|
|
|
|
|
|
|
|
module = LORA
|
|
|
|
module-str = lora
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
|
2020-04-16 07:35:04 +08:00
|
|
|
config LORA_SHELL
|
|
|
|
bool "Enable LoRa Shell"
|
|
|
|
depends on SHELL
|
|
|
|
help
|
|
|
|
Enable LoRa Shell for testing.
|
|
|
|
|
2019-09-01 00:44:44 +08:00
|
|
|
config LORA_INIT_PRIORITY
|
|
|
|
int "LoRa initialization priority"
|
|
|
|
default 90
|
|
|
|
help
|
|
|
|
System initialization priority for LoRa drivers.
|
|
|
|
|
2019-07-21 04:18:03 +08:00
|
|
|
source "drivers/lora/Kconfig.sx1276"
|
|
|
|
|
2019-09-01 00:44:44 +08:00
|
|
|
endif # LORA
|