2019-08-31 22:14:44 +05:30
|
|
|
#
|
|
|
|
# Copyright (c) 2019 Manivannan Sadhasivam
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
|
|
|
|
# Top-level configuration file for LORA drivers.
|
|
|
|
|
|
|
|
menuconfig LORA
|
2020-04-23 22:52:14 +05:30
|
|
|
bool "LoRa support [EXPERIMENTAL]"
|
2020-06-24 23:36:37 +02:00
|
|
|
select REQUIRES_FULL_LIBC
|
2019-08-31 22:14:44 +05:30
|
|
|
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 00:35:04 +01:00
|
|
|
config LORA_SHELL
|
|
|
|
bool "Enable LoRa Shell"
|
2020-05-28 10:34:29 -04:00
|
|
|
default y
|
2020-04-16 00:35:04 +01:00
|
|
|
depends on SHELL
|
|
|
|
help
|
|
|
|
Enable LoRa Shell for testing.
|
|
|
|
|
2019-08-31 22:14:44 +05:30
|
|
|
config LORA_INIT_PRIORITY
|
|
|
|
int "LoRa initialization priority"
|
|
|
|
default 90
|
|
|
|
help
|
|
|
|
System initialization priority for LoRa drivers.
|
|
|
|
|
2020-05-05 21:50:44 +01:00
|
|
|
source "drivers/lora/Kconfig.sx12xx"
|
2019-07-21 01:48:03 +05:30
|
|
|
|
2019-08-31 22:14:44 +05:30
|
|
|
endif # LORA
|