mirror of
https://github.com/zephyrproject-rtos/zephyr.git
synced 2024-12-04 10:18:24 +08:00
d8de33e966
Provide basic commands that are useful when testing a LoRa radio. Currently, the shell supports: > lora conf ... > lora send ... > lora recv ... > lora test_cw ... Signed-off-by: Andreas Sandberg <andreas@sandberg.pp.se>
36 lines
655 B
Plaintext
36 lines
655 B
Plaintext
#
|
|
# Copyright (c) 2019 Manivannan Sadhasivam
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# Top-level configuration file for LORA drivers.
|
|
|
|
menuconfig LORA
|
|
bool "LoRa support [EXPERIMENTAL]"
|
|
depends on NEWLIB_LIBC
|
|
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 "Enable 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.sx1276"
|
|
|
|
endif # LORA
|