93 lines
2.8 KiB
Plaintext
93 lines
2.8 KiB
Plaintext
menu "Jannex Configuration"
|
|
|
|
config ESP_WIFI_SSID
|
|
string "WiFi SSID"
|
|
default "myssid"
|
|
help
|
|
SSID (network name) for the example to connect to.
|
|
|
|
config ESP_WIFI_PASSWORD
|
|
string "WiFi Password"
|
|
default "mypassword"
|
|
help
|
|
WiFi password (WPA or WPA2) for the example to use.
|
|
|
|
config ESP_WIFI_AP
|
|
bool "Create AP when no Wifi values are entered"
|
|
default n
|
|
help
|
|
Create AP when no Wifi values are entered.
|
|
|
|
config ESP_OTA_SERVER
|
|
string "OTA Server domain"
|
|
default "mcu.ex.umbach.dev"
|
|
help
|
|
Enter the URL without htts:// or http:// and max 48 characters!
|
|
|
|
config FIRMWARE_UPDATE_SCAN
|
|
default y
|
|
bool "Scan interval for updates"
|
|
help
|
|
Scans the ota server for new updates.
|
|
|
|
config FIRMWARE_UPDATE_SCAN_SECONDS
|
|
default 10
|
|
int "Scan interval for updates (in Seconds)"
|
|
range 1 604800
|
|
depends on FIRMWARE_UPDATE_SCAN
|
|
|
|
config HTTP_SERVER
|
|
bool "Enable HTTP Server"
|
|
default y
|
|
help
|
|
Enable HTTP Server
|
|
|
|
config HTTP_SERVER_PORT
|
|
default 80
|
|
int "HTTP Server Port"
|
|
depends on HTTP_SERVER
|
|
|
|
config HTTP_SERVER_ENABLE_DEBUG_MODE
|
|
bool "Enable HTTP Server Debug Mode"
|
|
default y
|
|
help
|
|
Enable HTTP Server Console. It is used for remote debugging and redirects ESP_LOG to Socket Server
|
|
|
|
|
|
config HTTP_SERVER_DEBUG_URL
|
|
string "HTTP Server Debug Port"
|
|
default "ws://con.ex.umbach.dev/mcu"
|
|
depends on HTTP_SERVER_ENABLE_DEBUG_MODE
|
|
|
|
config HTTP_SERVER_DEBUG_PORT
|
|
default 50088
|
|
int "HTTP Server Debug Port"
|
|
depends on HTTP_SERVER_ENABLE_DEBUG_MODE
|
|
|
|
config HTTP_SERVER_DEBUG_CACHE_LENGTH
|
|
default 4000
|
|
int "HTTP Server Debug Cache Length"
|
|
depends on HTTP_SERVER_ENABLE_DEBUG_MODE
|
|
help
|
|
The length of the debug cache. The cache is used to store the last debug chars. The cache is used to send the last debug chars to the client when the client connects to the debug server or when the client reconnects to the debug server.
|
|
|
|
config HTTP_SERVER_DEBUG_REFRESH_RATE
|
|
default 500
|
|
int "HTTP Server Debug Refresh Rate"
|
|
depends on HTTP_SERVER_ENABLE_DEBUG_MODE
|
|
help
|
|
The refresh rate of the debug server in milliseconds. The refresh rate is used to send the debug chars to the client.
|
|
|
|
config DEBUG_SEND_COREDUMP
|
|
bool "Send coredump to debug server"
|
|
default n
|
|
depends on HTTP_SERVER_ENABLE_DEBUG_MODE
|
|
help
|
|
Send coredump to debug server
|
|
|
|
config NTP_SERVER
|
|
string "NTP Server"
|
|
default "0.de.pool.ntp.org"
|
|
|
|
endmenu
|