Skip to content

Commit fc5d723

Browse files
esp_wifi: Update wifi lib
1. Avoid parsing RSN/WPA IE's after connection 2. Remove AUTH_CHANGED reason code logic
1 parent abef43b commit fc5d723

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

components/esp_wifi/include/esp_wifi_types.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,7 @@ typedef enum {
9494
WIFI_REASON_ASSOC_FAIL = 203,
9595
WIFI_REASON_HANDSHAKE_TIMEOUT = 204,
9696
WIFI_REASON_CONNECTION_FAIL = 205,
97-
WIFI_REASON_AUTH_CHANGED = 206,
98-
WIFI_REASON_AP_TSF_RESET = 207,
97+
WIFI_REASON_AP_TSF_RESET = 206,
9998
} wifi_err_reason_t;
10099

101100
typedef enum {

docs/en/api-guides/wifi.rst

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1012,13 +1012,6 @@ The table below shows the reason-code defined in {IDF_TARGET_NAME}. The first co
10121012
| | | | connection to the AP has failed. |
10131013
| | | | |
10141014
+---------------------------+-------+---------+-------------------------------------------------------------+
1015-
| AUTH_CHANGED | 206 |reserved | Espressif-specific Wi-Fi reason-code: the |
1016-
| | | | disconnection has happened since AP has changed the |
1017-
| | | | authmode. |
1018-
| | | | |
1019-
+---------------------------+-------+---------+-------------------------------------------------------------+
1020-
1021-
10221015

10231016
{IDF_TARGET_NAME} Wi-Fi Station Connecting When Multiple APs Are Found
10241017
----------------------------------------------------------------------

0 commit comments

Comments
 (0)