esp_wifi: Update wifi lib
1. Fix WPA3 Auth timeout during BLE coex by increasing CNX timeout 2. Extend Coex phase for SAE Handshake 3. Define and utilize WPA3 Mixed Authmode, update esp_wifi_types.h
This commit is contained in:
parent
9e55345c43
commit
ee70736a03
3 changed files with 8 additions and 1 deletions
|
@ -57,6 +57,7 @@ typedef enum {
|
|||
WIFI_AUTH_WPA_WPA2_PSK, /**< authenticate mode : WPA_WPA2_PSK */
|
||||
WIFI_AUTH_WPA2_ENTERPRISE, /**< authenticate mode : WPA2_ENTERPRISE */
|
||||
WIFI_AUTH_WPA3_PSK, /**< authenticate mode : WPA3_PSK */
|
||||
WIFI_AUTH_WPA2_WPA3_PSK, /**< authenticate mode : WPA2_WPA3_PSK */
|
||||
WIFI_AUTH_MAX
|
||||
} wifi_auth_mode_t;
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 9d92c8ebc2a7ba94fcb55b2721279ba4ea19bb6f
|
||||
Subproject commit 3f4b0c46a6c921682c437cd71ae7a25c7a4b8642
|
|
@ -43,6 +43,12 @@ static void print_auth_mode(int authmode)
|
|||
case WIFI_AUTH_WPA2_ENTERPRISE:
|
||||
ESP_LOGI(TAG, "Authmode \tWIFI_AUTH_WPA2_ENTERPRISE");
|
||||
break;
|
||||
case WIFI_AUTH_WPA3_PSK:
|
||||
ESP_LOGI(TAG, "Authmode \tWIFI_AUTH_WPA3_PSK");
|
||||
break;
|
||||
case WIFI_AUTH_WPA2_WPA3_PSK:
|
||||
ESP_LOGI(TAG, "Authmode \tWIFI_AUTH_WPA2_WPA3_PSK");
|
||||
break;
|
||||
default:
|
||||
ESP_LOGI(TAG, "Authmode \tWIFI_AUTH_UNKNOWN");
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue