esp-tunnel/main/Kconfig.projbuild
2023-06-21 19:01:34 +03:00

48 lines
1.2 KiB
Plaintext

menu "EspTunnel Configuration"
config ESPTNL_PMK
string "ESPNOW primary master key"
default "pmk1234567890123"
help
ESPNOW primary master key. Must be 16 bytes.
config ESPTNL_LMK
string "ESPNOW local master key"
default "lmk1234567890123"
help
ESPNOW local master key. Must be 16 bytes.
config ESPTNL_CHANNEL
int "Channel"
default 1
range 0 14
help
The channel for sending and receiving ESPNOW data.
config ESPTNL_UART
int "UART interface"
default 0
help
The UART interface to use for RX and TX.
choice ESPTNL_LOG_LEVEL
prompt "Log level"
default ESPTNL_LOG_DEBUG
help
The application's own log level.
config ESPTNL_LOG_NONE
bool "None"
config ESPTNL_LOG_ERROR
bool "Error"
config ESPTNL_LOG_WARN
bool "Warning"
config ESPTNL_LOG_INFO
bool "Information"
config ESPTNL_LOG_DEBUG
bool "Debug"
config ESPTNL_LOG_VERBOSE
bool "Verbose"
endchoice
endmenu