esp_wifi: Remove auth_changed event and fix wpa2 authmode threshold
Added following as part of this change 1. Removed auth_changed event 2. Updated doc regarding usage of WPA/WEP secuiry modes 3. Fixed WPA2 enterprise authmode threshold.
This commit is contained in:
@@ -92,6 +92,11 @@ void wifi_init_sta(void)
|
||||
.sta = {
|
||||
.ssid = EXAMPLE_ESP_WIFI_SSID,
|
||||
.password = EXAMPLE_ESP_WIFI_PASS,
|
||||
/* Setting a password implies station will connect to all security modes including WEP/WPA.
|
||||
* However these modes are deprecated and not advisable to be used. Incase your Access point
|
||||
* doesn't support WPA2, these mode can be enabled by commenting below line */
|
||||
.threshold.authmode = WIFI_AUTH_WPA2_PSK,
|
||||
|
||||
.pmf_cfg = {
|
||||
.capable = true,
|
||||
.required = false
|
||||
|
||||
Reference in New Issue
Block a user