55 lines
1.3 KiB
Plaintext
55 lines
1.3 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.
|
|
|
|
config ESPTNL_BUFFER_SIZE
|
|
int "Buffer size"
|
|
default 128
|
|
range 40 218
|
|
help
|
|
The maximum size of the buffer to transmit via ESPNOW.
|
|
|
|
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 |