From 66a25379c0c8e1e07b5952351fd0a6f20732ce85 Mon Sep 17 00:00:00 2001 From: Akshat Agrawal Date: Fri, 20 Feb 2026 17:29:12 +0530 Subject: [PATCH] bugfix(usd): Resolve multicast RX issue in AX capable chips - Limit the NAN_DE_MAX_SERVICE to avoid Starvation of the second service --- components/esp_wifi/lib | 2 +- components/wpa_supplicant/src/common/nan_de.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/esp_wifi/lib b/components/esp_wifi/lib index c35e69a10c..e066922e04 160000 --- a/components/esp_wifi/lib +++ b/components/esp_wifi/lib @@ -1 +1 @@ -Subproject commit c35e69a10ca1c25a7765311656d97ee9c9e39f16 +Subproject commit e066922e0476e27fefbe630711f6533b2842f09e diff --git a/components/wpa_supplicant/src/common/nan_de.h b/components/wpa_supplicant/src/common/nan_de.h index fcbf5c9fc6..577a7ffc83 100644 --- a/components/wpa_supplicant/src/common/nan_de.h +++ b/components/wpa_supplicant/src/common/nan_de.h @@ -17,7 +17,7 @@ #ifndef ESP_SUPPLICANT #define NAN_DE_MAX_SERVICE 20 #else -#define NAN_DE_MAX_SERVICE 2 +#define NAN_DE_MAX_SERVICE 1 #endif #endif /* NAN_DE_MAX_SERVICE */