From 805b9c585995131e3cc32b12cf976333f2b8ed6d Mon Sep 17 00:00:00 2001 From: Nachiket Kukade Date: Fri, 26 Jun 2020 16:29:03 +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/esp32/include/esp_wifi_types.h | 1 - components/esp32/lib | 2 +- docs/en/api-guides/wifi.rst | 7 ------- 3 files changed, 1 insertion(+), 9 deletions(-) diff --git a/components/esp32/include/esp_wifi_types.h b/components/esp32/include/esp_wifi_types.h index 9ded4c0ad8..d7c7c567f6 100644 --- a/components/esp32/include/esp_wifi_types.h +++ b/components/esp32/include/esp_wifi_types.h @@ -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 { diff --git a/components/esp32/lib b/components/esp32/lib index 9e38451933..fac760b58f 160000 --- a/components/esp32/lib +++ b/components/esp32/lib @@ -1 +1 @@ -Subproject commit 9e384519333a92d5124fee3c1783bab1785c25a1 +Subproject commit fac760b58f3049180992e7a116737bbfeaa78ace diff --git a/docs/en/api-guides/wifi.rst b/docs/en/api-guides/wifi.rst index 048abf3bed..670da64654 100644 --- a/docs/en/api-guides/wifi.rst +++ b/docs/en/api-guides/wifi.rst @@ -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 ---------------------------