From 2357ae762107c97a88b3b830eb10c2aa7d8258dc Mon Sep 17 00:00:00 2001 From: muhaidong Date: Mon, 4 Aug 2025 21:52:45 +0800 Subject: [PATCH 1/4] fix(wifi): fix scan done event miss issue --- 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 09b6a047b0..180762ac13 160000 --- a/components/esp_wifi/lib +++ b/components/esp_wifi/lib @@ -1 +1 @@ -Subproject commit 09b6a047b069ddf1ec42e09818a1ea7b74fb3118 +Subproject commit 180762ac131df2ee66cd959545f1f75af69acc5b From 5a2c7b21809f90979732c7cfbc0100b8d616d3a7 Mon Sep 17 00:00:00 2001 From: liuning Date: Tue, 8 Jul 2025 18:01:25 +0800 Subject: [PATCH 2/4] fix(wifi): fix some esp-now issues and lightsleep issues 1. fix tbtt issues when wifi_slp_iram_opt is not enabled and light sleep enabled 2. support espnow rx all the time at coexistence default mode, fix some coexist perfermance issue with coexistence default mode. 3. support connectionless ps with enhanced_light_sleep 4. fix espnow coexist issue when switching to coexistence mode 5. fix concurrent issue of connectionless_interval_set API --- components/esp_coex/lib | 2 +- components/esp_wifi/lib | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/esp_coex/lib b/components/esp_coex/lib index c62361f19c..2d68674e3d 160000 --- a/components/esp_coex/lib +++ b/components/esp_coex/lib @@ -1 +1 @@ -Subproject commit c62361f19c98a448255b53f8d31d3a23597e01e3 +Subproject commit 2d68674e3d522fb025e4666217f9cc1ca2af9399 diff --git a/components/esp_wifi/lib b/components/esp_wifi/lib index 180762ac13..1e370437af 160000 --- a/components/esp_wifi/lib +++ b/components/esp_wifi/lib @@ -1 +1 @@ -Subproject commit 180762ac131df2ee66cd959545f1f75af69acc5b +Subproject commit 1e370437afc66a556df4d95623ce35fa40d2393f From de8e1c7c06d1f701ac2e87a2f981ed3f4598b73d Mon Sep 17 00:00:00 2001 From: yinqingzhao Date: Thu, 7 Aug 2025 16:02:24 +0800 Subject: [PATCH 3/4] feat(wifi): improve iperf performance of esp32c61 --- examples/wifi/iperf/sdkconfig.defaults.esp32c61 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/wifi/iperf/sdkconfig.defaults.esp32c61 b/examples/wifi/iperf/sdkconfig.defaults.esp32c61 index bfccf0ca7a..3d0735f285 100644 --- a/examples/wifi/iperf/sdkconfig.defaults.esp32c61 +++ b/examples/wifi/iperf/sdkconfig.defaults.esp32c61 @@ -3,17 +3,17 @@ # CONFIG_IDF_ENV_FPGA=n -CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM=20 -CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM=40 -CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM=36 +CONFIG_ESP_WIFI_STATIC_RX_BUFFER_NUM=14 +CONFIG_ESP_WIFI_DYNAMIC_RX_BUFFER_NUM=28 +CONFIG_ESP_WIFI_DYNAMIC_TX_BUFFER_NUM=30 CONFIG_ESP_WIFI_AMPDU_TX_ENABLED=y CONFIG_ESP_WIFI_TX_BA_WIN=32 CONFIG_ESP_WIFI_AMPDU_RX_ENABLED=y CONFIG_ESP_WIFI_RX_BA_WIN=20 CONFIG_ESP_WIFI_NVS_ENABLED=n -CONFIG_LWIP_TCP_SND_BUF_DEFAULT=25920 -CONFIG_LWIP_TCP_WND_DEFAULT=43200 +CONFIG_LWIP_TCP_SND_BUF_DEFAULT=23040 +CONFIG_LWIP_TCP_WND_DEFAULT=37440 CONFIG_LWIP_TCP_RECVMBOX_SIZE=48 CONFIG_LWIP_UDP_RECVMBOX_SIZE=64 CONFIG_LWIP_TCPIP_RECVMBOX_SIZE=48 From 32b4723cb2dbd17f162d1c28a5f96c044df1f171 Mon Sep 17 00:00:00 2001 From: yinqingzhao Date: Fri, 8 Aug 2025 15:57:48 +0800 Subject: [PATCH 4/4] fix(wifi): fix ht20 state check incorrect --- 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 1e370437af..c1f74dcf91 160000 --- a/components/esp_wifi/lib +++ b/components/esp_wifi/lib @@ -1 +1 @@ -Subproject commit 1e370437afc66a556df4d95623ce35fa40d2393f +Subproject commit c1f74dcf9151ae21b7a3850b90952796a2806358