From e67d29b4e8c12f9e250d480a1f650e6f33943e81 Mon Sep 17 00:00:00 2001 From: xiehang Date: Thu, 24 Dec 2020 11:56:18 +0800 Subject: [PATCH] esp_wifi: Update WiFi lib 1. Change wifi scan duration from 120ms to 100ms 2. Using deport reg instead of ahb 3. Revert to report specific reason code when receiving deauth during 4-way-handshark 4. Fix the bug that tx ampdu parameter is not from peer device 5. Faster WiFi station connect improvement, avoid 100ms passive scan 6. Add FCS failed packets filter 7.Update esp32 phy lib to v4660 8.Fix country code last byte to space instead of NULL 9.Fix softap cannot forward A-MSDU 10.Fix some typos in esp_wifi.h 11.Fix max tx power to 20dBm 12.Fix the issue that the esp_wifi_sta_get_ap_info can't get country 13.Add support for 802.1x sha256 auth key mode --- components/esp_wifi/include/esp_wifi_types.h | 1 + components/esp_wifi/lib | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/components/esp_wifi/include/esp_wifi_types.h b/components/esp_wifi/include/esp_wifi_types.h index fa7cb1393d..2fce8de8bc 100644 --- a/components/esp_wifi/include/esp_wifi_types.h +++ b/components/esp_wifi/include/esp_wifi_types.h @@ -377,6 +377,7 @@ typedef enum { #define WIFI_PROMIS_FILTER_MASK_MISC (1<<3) /**< filter the packets with type of WIFI_PKT_MISC */ #define WIFI_PROMIS_FILTER_MASK_DATA_MPDU (1<<4) /**< filter the MPDU which is a kind of WIFI_PKT_DATA */ #define WIFI_PROMIS_FILTER_MASK_DATA_AMPDU (1<<5) /**< filter the AMPDU which is a kind of WIFI_PKT_DATA */ +#define WIFI_PROMIS_FILTER_MASK_FCSFAIL (1<<6) /**< filter the FCS failed packets, do not open it in general */ #define WIFI_PROMIS_CTRL_FILTER_MASK_ALL (0xFF800000) /**< filter all control packets */ #define WIFI_PROMIS_CTRL_FILTER_MASK_WRAPPER (1<<23) /**< filter the control packets with subtype of Control Wrapper */ diff --git a/components/esp_wifi/lib b/components/esp_wifi/lib index c13860b4f0..db2262e3bc 160000 --- a/components/esp_wifi/lib +++ b/components/esp_wifi/lib @@ -1 +1 @@ -Subproject commit c13860b4f07fbe35e25fc7807b1f74d7c19ed9a2 +Subproject commit db2262e3bc6e7639afd4a97c73d69abb7c25a95b