Files
esp-idf/examples/network/eth2ap/main/Kconfig.projbuild
T

29 lines
685 B
Plaintext
Raw Normal View History

2019-05-10 13:52:23 +08:00
menu "Example Configuration"
2019-05-10 13:52:23 +08: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.
config EXAMPLE_WIFI_CHANNEL
int "WiFi channel"
range 1 13
default 1
help
Set the channel of Wi-Fi ap.
2019-05-10 13:52:23 +08: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