2019-05-10 01:52:23 -04:00
|
|
|
menu "Example Configuration"
|
2020-11-26 22:44:42 -05:00
|
|
|
|
2019-05-10 01:52:23 -04:00
|
|
|
config EXAMPLE_WIFI_SSID
|
|
|
|
string "Wi-Fi SSID"
|
|
|
|
default "eth2ap"
|
|
|
|
help
|
|
|
|
Set the SSID of Wi-Fi ap interface.
|
|
|
|
|
|
|
|
config EXAMPLE_WIFI_PASSWORD
|
|
|
|
string "Wi-Fi Password"
|
|
|
|
default "12345678"
|
|
|
|
help
|
|
|
|
Set the password of Wi-Fi ap interface.
|
|
|
|
|
2020-03-20 05:20:05 -04:00
|
|
|
config EXAMPLE_WIFI_CHANNEL
|
|
|
|
int "WiFi channel"
|
|
|
|
range 1 13
|
|
|
|
default 1
|
|
|
|
help
|
|
|
|
Set the channel of Wi-Fi ap.
|
|
|
|
|
2019-05-10 01:52:23 -04:00
|
|
|
config EXAMPLE_MAX_STA_CONN
|
|
|
|
int "Maximum STA connections"
|
|
|
|
default 4
|
|
|
|
help
|
|
|
|
Maximum number of the station that allowed to connect to current Wi-Fi hotspot.
|
|
|
|
|
|
|
|
endmenu
|