2018-08-29 22:11:21 -04:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
config ESP_WIFI_SSID
|
|
|
|
string "WiFi SSID"
|
|
|
|
default "myssid"
|
|
|
|
help
|
|
|
|
SSID (network name) for the example to connect to.
|
2018-08-29 22:11:21 -04:00
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
config ESP_WIFI_PASSWORD
|
|
|
|
string "WiFi Password"
|
|
|
|
default "mypassword"
|
|
|
|
help
|
|
|
|
WiFi password (WPA or WPA2) for the example to use.
|
2018-08-29 22:11:21 -04:00
|
|
|
|
2019-01-25 11:10:53 -05:00
|
|
|
config ESP_MAXIMUM_RETRY
|
|
|
|
int "Maximum retry"
|
|
|
|
default 5
|
|
|
|
help
|
|
|
|
Set the Maximum retry to avoid station reconnecting to the AP unlimited when the AP is really inexistent.
|
2022-03-10 02:20:39 -05:00
|
|
|
|
|
|
|
choice ESP_WIFI_SCAN_AUTH_MODE_THRESHOLD
|
|
|
|
prompt "WiFi Scan auth mode threshold"
|
|
|
|
default ESP_WIFI_AUTH_OPEN
|
|
|
|
help
|
|
|
|
The weakest authmode to accept in the scan mode.
|
|
|
|
|
|
|
|
config ESP_WIFI_AUTH_OPEN
|
|
|
|
bool "OPEN"
|
|
|
|
config ESP_WIFI_AUTH_WEP
|
|
|
|
bool "WEP"
|
|
|
|
config ESP_WIFI_AUTH_WPA_PSK
|
|
|
|
bool "WPA PSK"
|
|
|
|
config ESP_WIFI_AUTH_WPA2_PSK
|
|
|
|
bool "WPA2 PSK"
|
|
|
|
config ESP_WIFI_AUTH_WPA_WPA2_PSK
|
|
|
|
bool "WPA/WPA2 PSK"
|
|
|
|
config ESP_WIFI_AUTH_WPA3_PSK
|
|
|
|
bool "WPA3 PSK"
|
|
|
|
config ESP_WIFI_AUTH_WPA2_WPA3_PSK
|
|
|
|
bool "WPA2/WPA3 PSK"
|
|
|
|
config ESP_WIFI_AUTH_WAPI_PSK
|
|
|
|
bool "WAPI PSK"
|
|
|
|
endchoice
|
|
|
|
|
2018-08-29 22:11:21 -04:00
|
|
|
endmenu
|