esp_wifi: Update wifi lib

1. Avoid parsing RSN/WPA IE's after connection
2. Remove AUTH_CHANGED reason code logic
release/v3.2
Nachiket Kukade 2020-06-26 15:11:44 +05:30 zatwierdzone przez bot
rodzic 2ce9add5ba
commit 231773b28a
3 zmienionych plików z 1 dodań i 9 usunięć

Wyświetl plik

@ -93,7 +93,6 @@ typedef enum {
WIFI_REASON_ASSOC_FAIL = 203,
WIFI_REASON_HANDSHAKE_TIMEOUT = 204,
WIFI_REASON_CONNECTION_FAIL = 205,
WIFI_REASON_AUTH_CHANGED = 206,
} wifi_err_reason_t;
typedef enum {

@ -1 +1 @@
Subproject commit 465023a439de478857c863f10ffb418ce3db075d
Subproject commit 396d8a29d13e053ade4d0ffeab47a0b4feb17a81

Wyświetl plik

@ -982,13 +982,6 @@ The table below shows the reason-code defined in ESP32. The first column is the
| | | | connection to the AP has failed. |
| | | | |
+---------------------------+-------+---------+-------------------------------------------------------------+
| AUTH_CHANGED | 206 |reserved | Espressif-specific Wi-Fi reason-code: the |
| | | | disconnection has happened since AP has changed the |
| | | | authmode. |
| | | | |
+---------------------------+-------+---------+-------------------------------------------------------------+
ESP32 Wi-Fi Configuration
---------------------------