Merge branch 'bugfix/enable_ipv6_if_nan_v5.5' into 'release/v5.5'

bugfix(wifi): Enable IPv6 support via LWIP_IPV6 when WiFi Aware(NAN) is enabled (Backport v5.5)

See merge request espressif/esp-idf!40486
This commit is contained in:
Jiang Jiang Jian
2025-07-24 00:18:29 +08:00
4 changed files with 7 additions and 2 deletions
+1
View File
@@ -574,6 +574,7 @@ menu "Wi-Fi"
bool "WiFi Aware"
default n
depends on SOC_WIFI_NAN_SUPPORT
select LWIP_IPV6
help
Enable WiFi Aware (NAN) feature.
@@ -23,8 +23,8 @@ SAVE_BIN_SIZE_TH = {
},
'disable_nan': {
'esp32': 29600,
'esp32c5': 32400,
'esp32c61': 32400,
'esp32c5': 32000,
'esp32c61': 32000,
'esp32s2': 28000,
# other chips does not support nan
'default': 0,
@@ -5,3 +5,4 @@ CONFIG_PARTITION_TABLE_CUSTOM=y
# uses this offset for `esp_secure_cert` and hence this change aligns this example
# to work on those modules.
CONFIG_PARTITION_TABLE_OFFSET=0xC000
CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y
@@ -31,6 +31,9 @@
#else
#define EXAMPLE_NAN_SVC_MSG "Hello"
#endif
#ifndef ETH_ALEN
#define ETH_ALEN 6
#endif
static const char *TAG = "subscriber";