72 lines
1.6 KiB
Plaintext
72 lines
1.6 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 ""
|
|
help
|
|
Enter the URL
|
|
|
|
choice FIRMWARE_BRANCH
|
|
prompt "Select branch"
|
|
default SELECTION_MASTER
|
|
help
|
|
Choose default branch.
|
|
|
|
config SELECTION_MASTER
|
|
bool "master"
|
|
|
|
config SELECTION_BETA
|
|
bool "beta"
|
|
|
|
config SELECTION_STABLE
|
|
bool "stable"
|
|
|
|
config SELECTION_PRODUCTION
|
|
bool "production"
|
|
|
|
config SELECTION_CUSTOM
|
|
bool "Enter custom branch"
|
|
|
|
endchoice
|
|
|
|
config FIRMWARE_BRANCH_CUSTOM
|
|
string "Enter branch name"
|
|
depends on SELECTION_CUSTOM
|
|
help
|
|
Enter custom branch
|
|
|
|
config FIRMWARE_UPDATE_SCAN
|
|
default 10
|
|
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)"
|
|
depends on FIRMWARE_UPDATE_SCAN
|
|
help
|
|
Enter 0 to disable
|
|
|
|
|
|
|
|
endmenu
|