mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 18:57:19 +02:00
fix(wifi): fix spiram ignore issue
This commit is contained in:
committed by
BOT
parent
e2c732c906
commit
ea05f7f647
@ -224,10 +224,10 @@ extern wifi_osi_funcs_t g_wifi_osi_funcs;
|
|||||||
#define WIFI_ENABLE_WPA3_SAE 0
|
#define WIFI_ENABLE_WPA3_SAE 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if CONFIG_SPIRAM
|
#if WIFI_CACHE_TX_BUFFER_NUM > 0
|
||||||
#define WIFI_ENABLE_SPIRAM (1<<1)
|
#define WIFI_ENABLE_CACHE_TX_BUFFER (1<<1)
|
||||||
#else
|
#else
|
||||||
#define WIFI_ENABLE_SPIRAM 0
|
#define WIFI_ENABLE_CACHE_TX_BUFFER 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if CONFIG_ESP_WIFI_FTM_INITIATOR_SUPPORT
|
#if CONFIG_ESP_WIFI_FTM_INITIATOR_SUPPORT
|
||||||
@ -289,7 +289,7 @@ extern wifi_osi_funcs_t g_wifi_osi_funcs;
|
|||||||
|
|
||||||
/* Set additional WiFi features and capabilities */
|
/* Set additional WiFi features and capabilities */
|
||||||
#define WIFI_FEATURE_CAPS (WIFI_ENABLE_WPA3_SAE | \
|
#define WIFI_FEATURE_CAPS (WIFI_ENABLE_WPA3_SAE | \
|
||||||
WIFI_ENABLE_SPIRAM | \
|
WIFI_ENABLE_CACHE_TX_BUFFER | \
|
||||||
WIFI_FTM_INITIATOR | \
|
WIFI_FTM_INITIATOR | \
|
||||||
WIFI_FTM_RESPONDER | \
|
WIFI_FTM_RESPONDER | \
|
||||||
WIFI_ENABLE_GCMP | \
|
WIFI_ENABLE_GCMP | \
|
||||||
|
Submodule components/esp_wifi/lib updated: 9532814f14...4488e06749
Reference in New Issue
Block a user