ac0b4c184d
When running with wpa debug prints enabled data/key hexdumps are printed to the log in a really verbose format (one byte per line). Make these printouts more compact. 16 bytes per line.
52 lines
1.4 KiB
Text
52 lines
1.4 KiB
Text
menu "Example Configuration"
|
|
|
|
config EXAMPLE_WIFI_SSID
|
|
string "WiFi SSID"
|
|
default "wpa2_test"
|
|
help
|
|
SSID (network name) for the example to connect to.
|
|
|
|
config EXAMPLE_VALIDATE_SERVER_CERT
|
|
bool "Validate server"
|
|
default y
|
|
help
|
|
Validate the servers' certificate using CA cert.
|
|
|
|
choice
|
|
prompt "EAP method for the example to use"
|
|
default EXAMPLE_EAP_METHOD_PEAP
|
|
config EXAMPLE_EAP_METHOD_TLS
|
|
bool "TLS"
|
|
config EXAMPLE_EAP_METHOD_PEAP
|
|
bool "PEAP"
|
|
config EXAMPLE_EAP_METHOD_TTLS
|
|
bool "TTLS"
|
|
endchoice
|
|
|
|
config EXAMPLE_EAP_METHOD
|
|
int
|
|
default 0 if EXAMPLE_EAP_METHOD_TLS
|
|
default 1 if EXAMPLE_EAP_METHOD_PEAP
|
|
default 2 if EXAMPLE_EAP_METHOD_TTLS
|
|
|
|
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"
|
|
depends on EXAMPLE_EAP_METHOD_PEAP || EXAMPLE_EAP_METHOD_TTLS
|
|
default "espressif"
|
|
help
|
|
Username for EAP method (PEAP and TTLS).
|
|
|
|
config EXAMPLE_EAP_PASSWORD
|
|
string "EAP PASSWORD"
|
|
depends on EXAMPLE_EAP_METHOD_PEAP || EXAMPLE_EAP_METHOD_TTLS
|
|
default "test11"
|
|
help
|
|
Password for EAP method (PEAP and TTLS).
|
|
|
|
endmenu
|