2017-03-27 05:52:46 -04:00
|
|
|
menu "Example Configuration"
|
2017-03-29 03:33:05 -04:00
|
|
|
|
|
|
|
config WIFI_SSID
|
2017-03-27 05:52:46 -04:00
|
|
|
string "WiFi SSID"
|
|
|
|
default "myssid"
|
|
|
|
help
|
|
|
|
SSID (network name) for the example to connect to.
|
2017-03-29 03:33:05 -04:00
|
|
|
|
2017-03-27 05:52:46 -04:00
|
|
|
config WIFI_PASSWORD
|
|
|
|
string "WiFi Password"
|
|
|
|
default "mypassword"
|
|
|
|
help
|
|
|
|
WiFi password (WPA or WPA2) for the example to use.
|
2017-11-09 21:54:50 -05:00
|
|
|
|
|
|
|
config WIFI_LISTEN_INTERVAL
|
|
|
|
int "WiFi listen interval"
|
|
|
|
default 3
|
|
|
|
help
|
|
|
|
WiFi listen interval for station to receive beacon from AP.
|
2017-03-27 05:52:46 -04:00
|
|
|
|
2017-03-29 03:33:05 -04:00
|
|
|
choice POWER_SAVE_MODE
|
|
|
|
prompt "power save mode"
|
2017-11-09 21:54:50 -05:00
|
|
|
default POWER_SAVE_MIN_MODEM
|
2017-03-29 03:33:05 -04:00
|
|
|
help
|
|
|
|
Power save mode for the esp32 to use.
|
|
|
|
|
|
|
|
config POWER_SAVE_NONE
|
|
|
|
bool "none"
|
2017-11-09 21:54:50 -05:00
|
|
|
config POWER_SAVE_MIN_MODEM
|
|
|
|
bool "minimum modem"
|
|
|
|
config POWER_SAVE_MAX_MODEM
|
|
|
|
bool "maximum modem"
|
2017-03-29 03:33:05 -04:00
|
|
|
endchoice
|
|
|
|
|
2017-03-27 05:52:46 -04:00
|
|
|
endmenu
|