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 drivers [EXPERIMENTAL]"
11	select POLL
12	select EXPERIMENTAL
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 "LoRa Shell"
24	depends on SHELL
25	help
26	  Enable LoRa Shell for testing.
27
28config LORA_INIT_PRIORITY
29	int "LoRa initialization priority"
30	default 90
31	help
32	  System initialization priority for LoRa drivers.
33
34source "drivers/lora/Kconfig.sx12xx"
35
36source "drivers/lora/Kconfig.rylrxxx"
37
38endif # LORA
39