From 2c45d430da771c5f0be771c5ffc2c8fe9ff99ab3 Mon Sep 17 00:00:00 2001 From: Nachiket Kukade Date: Tue, 23 Jun 2020 14:10:36 +0530 Subject: [PATCH] esp_wifi: Update wifi lib 1. Avoid parsing RSN/WPA IE's after connection 2. Remove AUTH_CHANGED reason code logic --- components/esp_wifi/include/esp_wifi_types.h | 1 - components/esp_wifi/lib_esp32 | 2 +- docs/en/api-guides/wifi.rst | 7 ------- 3 files changed, 1 insertion(+), 9 deletions(-) diff --git a/components/esp_wifi/include/esp_wifi_types.h b/components/esp_wifi/include/esp_wifi_types.h index df256ba339..035a435a71 100644 --- a/components/esp_wifi/include/esp_wifi_types.h +++ b/components/esp_wifi/include/esp_wifi_types.h @@ -94,7 +94,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 { diff --git a/components/esp_wifi/lib_esp32 b/components/esp_wifi/lib_esp32 index e8a234dd8d..6f8c549517 160000 --- a/components/esp_wifi/lib_esp32 +++ b/components/esp_wifi/lib_esp32 @@ -1 +1 @@ -Subproject commit e8a234dd8ddfd7926f58c9c682cfd906073e9e4c +Subproject commit 6f8c549517a5a0c7c9202e1fe06cff2f85a2bc6e diff --git a/docs/en/api-guides/wifi.rst b/docs/en/api-guides/wifi.rst index 2818a61ded..b57461e416 100644 --- a/docs/en/api-guides/wifi.rst +++ b/docs/en/api-guides/wifi.rst @@ -1010,13 +1010,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 Station Connecting When Multiple APs Are Found ---------------------------------------------------------------