mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
50 lines
1.2 KiB
Plaintext
50 lines
1.2 KiB
Plaintext
menu "Example Configuration"
|
|
|
|
config EXAMPLE_WIFI_SSID
|
|
string "WiFi SSID"
|
|
default "ESP_EAP_FAST_AP"
|
|
help
|
|
SSID (network name) for the example to connect to.
|
|
|
|
choice
|
|
prompt "Enterprise configuration to be used"
|
|
default EXAMPLE_WPA3_ENTERPRISE
|
|
config EXAMPLE_WPA2_ENTERPRISE
|
|
bool "WPA2_ENT"
|
|
config EXAMPLE_WPA3_ENTERPRISE
|
|
bool "WPA3_ENT"
|
|
endchoice
|
|
|
|
if EXAMPLE_WPA2_ENTERPRISE
|
|
config EXAMPLE_VALIDATE_SERVER_CERT
|
|
bool "Validate server"
|
|
default y
|
|
help
|
|
Validate the servers' certificate using CA cert.
|
|
endif
|
|
|
|
if !EXAMPLE_WPA2_ENTERPRISE
|
|
config EXAMPLE_VALIDATE_SERVER_CERT
|
|
default y
|
|
endif
|
|
|
|
config EXAMPLE_EAP_ID
|
|
string "EAP ID"
|
|
default "example@espressif.com"
|
|
help
|
|
Identity in phase 1 of EAP procedure.
|
|
|
|
config EXAMPLE_EAP_USERNAME
|
|
string "EAP USERNAME"
|
|
default "espressif"
|
|
help
|
|
Username for EAP method.
|
|
|
|
config EXAMPLE_EAP_PASSWORD
|
|
string "EAP PASSWORD"
|
|
default "test11"
|
|
help
|
|
Password for EAP method.
|
|
|
|
endmenu
|