1# 2# Copyright (c) 2019 Manivannan Sadhasivam 3# 4# SPDX-License-Identifier: Apache-2.0 5# 6 7# Top-level configuration file for LORA drivers. 8 9menuconfig LORA 10 bool "LoRa support [EXPERIMENTAL]" 11 select REQUIRES_FULL_LIBC 12 select POLL 13 help 14 Include LoRa drivers in the system configuration. 15 16if LORA 17 18module = LORA 19module-str = lora 20source "subsys/logging/Kconfig.template.log_config" 21 22config LORA_SHELL 23 bool "Enable LoRa Shell" 24 default y 25 depends on SHELL 26 help 27 Enable LoRa Shell for testing. 28 29config LORA_INIT_PRIORITY 30 int "LoRa initialization priority" 31 default 90 32 help 33 System initialization priority for LoRa drivers. 34 35source "drivers/lora/Kconfig.sx12xx" 36 37endif # LORA 38