You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
697 B
38 lines
697 B
# |
|
# Copyright (c) 2019 Manivannan Sadhasivam |
|
# |
|
# SPDX-License-Identifier: Apache-2.0 |
|
# |
|
|
|
# Top-level configuration file for LORA drivers. |
|
|
|
menuconfig LORA |
|
bool "LoRa drivers [EXPERIMENTAL]" |
|
select POLL |
|
select EXPERIMENTAL |
|
help |
|
Include LoRa drivers in the system configuration. |
|
|
|
if LORA |
|
|
|
module = LORA |
|
module-str = lora |
|
source "subsys/logging/Kconfig.template.log_config" |
|
|
|
config LORA_SHELL |
|
bool "LoRa Shell" |
|
depends on SHELL |
|
help |
|
Enable LoRa Shell for testing. |
|
|
|
config LORA_INIT_PRIORITY |
|
int "LoRa initialization priority" |
|
default 90 |
|
help |
|
System initialization priority for LoRa drivers. |
|
|
|
source "drivers/lora/Kconfig.sx12xx" |
|
|
|
source "drivers/lora/Kconfig.rylrxxx" |
|
|
|
endif # LORA
|
|
|