From 9b3ce4b15ffda11a6646bcfb4bb16e5d0c64aea7 Mon Sep 17 00:00:00 2001 From: muhaidong Date: Wed, 9 Mar 2022 14:48:49 +0800 Subject: [PATCH 1/3] esp_wifi: fix fragment issue and PMF compatible for faulty APs 1. fix(pp): fix fragment plt loss when 2td pn compare with 1th pn 2. pmf allow keyindex in big endian format to workaround faulty APs 3. docs: update miswritten and abbreviated words and syntax errors for initialize WiFi section in esp_wifi.h header file 4. allow for minimal scope of wifi_init_config_t 5.compute packet length use lldesc length instead rx_ctl sig_len for sniffer --- components/esp_wifi/lib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_wifi/lib b/components/esp_wifi/lib index 733e505fdd..bba5f9116d 160000 --- a/components/esp_wifi/lib +++ b/components/esp_wifi/lib @@ -1 +1 @@ -Subproject commit 733e505fdde418be7551669c97171505670b858f +Subproject commit bba5f9116dec8eccce0ad43281a69f3f7f8c633b From d30480c11376d4565de448b1a9b6d73eca1e5939 Mon Sep 17 00:00:00 2001 From: Shang Zhou Date: Fri, 26 Nov 2021 19:11:09 +0800 Subject: [PATCH 2/3] docs: Update miswritten and abbreviated words and syntax errors for initialize WiFi section in esp_wifi.h header file --- components/esp_wifi/include/esp_wifi.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/components/esp_wifi/include/esp_wifi.h b/components/esp_wifi/include/esp_wifi.h index 51e0323484..568e597eeb 100644 --- a/components/esp_wifi/include/esp_wifi.h +++ b/components/esp_wifi/include/esp_wifi.h @@ -239,18 +239,18 @@ extern uint64_t g_wifi_feature_caps; }; /** - * @brief Init WiFi - * Alloc resource for WiFi driver, such as WiFi control structure, RX/TX buffer, - * WiFi NVS structure etc, this WiFi also start WiFi task + * @brief Initialize WiFi + * Allocate resource for WiFi driver, such as WiFi control structure, RX/TX buffer, + * WiFi NVS structure etc. This WiFi also starts WiFi task * * @attention 1. This API must be called before all other WiFi API can be called - * @attention 2. Always use WIFI_INIT_CONFIG_DEFAULT macro to init the config to default values, this can - * guarantee all the fields got correct value when more fields are added into wifi_init_config_t - * in future release. If you want to set your owner initial values, overwrite the default values - * which are set by WIFI_INIT_CONFIG_DEFAULT, please be notified that the field 'magic' of + * @attention 2. Always use WIFI_INIT_CONFIG_DEFAULT macro to initialize the configuration to default values, this can + * guarantee all the fields get correct value when more fields are added into wifi_init_config_t + * in future release. If you want to set your own initial values, overwrite the default values + * which are set by WIFI_INIT_CONFIG_DEFAULT. Please be notified that the field 'magic' of * wifi_init_config_t should always be WIFI_INIT_CONFIG_MAGIC! * - * @param config pointer to WiFi init configuration structure; can point to a temporary variable. + * @param config pointer to WiFi initialized configuration structure; can point to a temporary variable. * * @return * - ESP_OK: succeed From 828f9920c3a9dd69a77442c84bd55aa0c52e1be3 Mon Sep 17 00:00:00 2001 From: NikLeberg <39563554+NikLeberg@users.noreply.github.com> Date: Tue, 16 Feb 2021 18:07:46 +0100 Subject: [PATCH 3/3] allow for minimal scope of wifi_init_config_t With this change one can use the default config as a variable with minimal scope: esp_wifi_init(&(wifi_init_config_t)WIFI_INIT_CONFIG_DEFAULT()) --- components/esp_wifi/include/esp_wifi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_wifi/include/esp_wifi.h b/components/esp_wifi/include/esp_wifi.h index 568e597eeb..7595ccb66d 100644 --- a/components/esp_wifi/include/esp_wifi.h +++ b/components/esp_wifi/include/esp_wifi.h @@ -236,7 +236,7 @@ extern uint64_t g_wifi_feature_caps; .feature_caps = g_wifi_feature_caps, \ .sta_disconnected_pm = WIFI_STA_DISCONNECTED_PM_ENABLED, \ .magic = WIFI_INIT_CONFIG_MAGIC\ -}; +} /** * @brief Initialize WiFi