Skip to content

Commit

Permalink
esp_wifi:
Browse files Browse the repository at this point in the history
1. Avoid parsing RSN/WPA IE's after connection
2. Remove AUTH_CHANGED reason code logic
3. fix the bug when calculating the PMK, the local rx beacon time increment is 0
4. mesh: don't disconnect when tbtt update
  • Loading branch information
zhangyanjiaoesp committed Jul 3, 2020
1 parent a1c11b3 commit 4761c40
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
3 changes: 1 addition & 2 deletions components/esp_wifi/include/esp_wifi_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,7 @@ typedef enum {
WIFI_REASON_ASSOC_FAIL = 203,
WIFI_REASON_HANDSHAKE_TIMEOUT = 204,
WIFI_REASON_CONNECTION_FAIL = 205,
WIFI_REASON_AUTH_CHANGED = 206,
WIFI_REASON_AP_TSF_RESET = 207,
WIFI_REASON_AP_TSF_RESET = 206,
} wifi_err_reason_t;

typedef enum {
Expand Down
6 changes: 0 additions & 6 deletions docs/en/api-guides/wifi.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1012,12 +1012,6 @@ The table below shows the reason-code defined in {IDF_TARGET_NAME}. The first co
| | | | 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. |
| | | | |
+---------------------------+-------+---------+-------------------------------------------------------------+



{IDF_TARGET_NAME} Wi-Fi Station Connecting When Multiple APs Are Found
Expand Down

0 comments on commit 4761c40

Please sign in to comment.