| 12345678910111213141516171819202122232425262728 |
- menu "Example Configuration"
- 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.
- config EXAMPLE_WIFI_CHANNEL
- int "WiFi channel"
- range 1 13
- default 1
- help
- Set the channel of Wi-Fi ap.
- 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
|