@@ -250,7 +250,10 @@ menu "Wi-Fi Remote"
250
250
range 6 32
251
251
default 32
252
252
help
253
- Set the number of WiFi management short buffer.
253
+ Set the maximum number of Wi-Fi management short buffers. These buffers are dynamically allocated,
254
+ with their size determined by the length of the management packet to be sent. When a management
255
+ packet is less than 64 bytes, the Wi-Fi driver classifies it as a short management packet and
256
+ assigns it to one of these buffers.
254
257
255
258
config ESP_WIFI_IRAM_OPT
256
259
bool "WiFi IRAM speed optimization"
@@ -263,7 +266,7 @@ menu "Wi-Fi Remote"
263
266
264
267
config ESP_WIFI_EXTRA_IRAM_OPT
265
268
bool "WiFi EXTRA IRAM speed optimization"
266
- default y if SLAVE_IDF_TARGET_ESP32C6
269
+ default y if SLAVE_SOC_WIFI_HE_SUPPORT
267
270
default n
268
271
help
269
272
Select this option to place additional frequently called Wi-Fi library functions
@@ -318,6 +321,7 @@ menu "Wi-Fi Remote"
318
321
bool "WiFi SLP IRAM speed optimization"
319
322
select PM_SLP_DEFAULT_PARAMS_OPT
320
323
select PERIPH_CTRL_FUNC_IN_IRAM
324
+ default y if SLAVE_SOC_WIFI_HE_SUPPORT
321
325
help
322
326
Select this option to place called Wi-Fi library TBTT process and receive beacon functions in IRAM.
323
327
Some functions can be put in IRAM either by ESP_WIFI_IRAM_OPT and ESP_WIFI_RX_IRAM_OPT, or this one.
@@ -330,17 +334,30 @@ menu "Wi-Fi Remote"
330
334
int "Minimum active time"
331
335
range 8 60
332
336
default 50
333
- depends on ESP_WIFI_SLP_IRAM_OPT
334
337
help
335
- The minimum timeout for waiting to receive data, unit: milliseconds.
338
+ Only for station in WIFI_PS_MIN_MODEM or WIFI_PS_MAX_MODEM. When the station enters the active state,
339
+ it will work for at least ESP_WIFI_SLP_DEFAULT_MIN_ACTIVE_TIME. If a data packet is received or sent
340
+ during this period, the time will be refreshed. If the time is up, but the station still has packets
341
+ to receive or send, the time will also be refreshed. unit: milliseconds.
336
342
337
343
config ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME
338
344
int "Maximum keep alive time"
339
345
range 10 60
340
346
default 10
341
- depends on ESP_WIFI_SLP_IRAM_OPT
342
347
help
343
- The maximum time that wifi keep alive, unit: seconds.
348
+ Only for station in WIFI_PS_MIN_MODEM or WIFI_PS_MAX_MODEM. If no packet has been
349
+ sent within ESP_WIFI_SLP_DEFAULT_MAX_ACTIVE_TIME, a null data packet will be sent
350
+ to maintain the connection with the AP. unit: seconds.
351
+
352
+ config ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME
353
+ int "Minimum wait broadcast data time"
354
+ range 10 30
355
+ default 15
356
+ help
357
+ Only for station in WIFI_PS_MIN_MODEM or WIFI_PS_MAX_MODEM. When the station knows through the beacon
358
+ that AP will send broadcast packet, it will wait for ESP_WIFI_SLP_DEFAULT_WAIT_BROADCAST_DATA_TIME
359
+ before entering the sleep process. If a broadcast packet is received with more data bits, the time
360
+ will refreshed. unit: milliseconds.
344
361
345
362
config ESP_WIFI_FTM_ENABLE
346
363
bool "WiFi FTM"
@@ -375,7 +392,7 @@ menu "Wi-Fi Remote"
375
392
376
393
config ESP_WIFI_GMAC_SUPPORT
377
394
bool "WiFi GMAC Support(GMAC128 and GMAC256)"
378
- default n
395
+ default y
379
396
help
380
397
Select this option to enable GMAC support. GMAC support is compulsory for WiFi 192 bit certification.
381
398
@@ -453,14 +470,6 @@ menu "Wi-Fi Remote"
453
470
help
454
471
Enable WiFi Aware (NAN) feature.
455
472
456
- config ESP_WIFI_ENABLE_WIFI_TX_STATS
457
- bool "Enable Wi-Fi transmission statistics"
458
- depends on SLAVE_SOC_WIFI_HE_SUPPORT
459
- default "y"
460
- help
461
- Enable Wi-Fi transmission statistics. Total support 4 access category. Each access category
462
- will use 346 bytes memory.
463
-
464
473
config ESP_WIFI_MBEDTLS_CRYPTO
465
474
bool "Use MbedTLS crypto APIs"
466
475
default y
@@ -597,21 +606,66 @@ menu "Wi-Fi Remote"
597
606
help
598
607
Select this option to enable WPS registrar support in softAP mode.
599
608
609
+ config ESP_WIFI_ENABLE_WIFI_TX_STATS
610
+ bool "Enable Wi-Fi transmission statistics"
611
+ depends on SLAVE_SOC_WIFI_HE_SUPPORT
612
+ default n
613
+ help
614
+ Enable Wi-Fi transmission statistics. Total support 4 access category. Each access category
615
+ will use 346 bytes memory.
616
+
600
617
config ESP_WIFI_ENABLE_WIFI_RX_STATS
601
618
bool "Enable Wi-Fi reception statistics"
602
619
depends on SLAVE_SOC_WIFI_HE_SUPPORT
603
- default "y"
620
+ default n
604
621
help
605
622
Enable Wi-Fi reception statistics. Total support 2 access category. Each access category
606
623
will use 190 bytes memory.
607
624
608
625
config ESP_WIFI_ENABLE_WIFI_RX_MU_STATS
609
626
bool "Enable Wi-Fi DL MU-MIMO and DL OFDMA reception statistics"
610
627
depends on ESP_WIFI_ENABLE_WIFI_RX_STATS
611
- default "y"
628
+ default n
612
629
help
613
630
Enable Wi-Fi DL MU-MIMO and DL OFDMA reception statistics. Will use 10932 bytes memory.
614
631
632
+ config ESP_WIFI_TX_HETB_QUEUE_NUM
633
+ int "WiFi TX HE TB QUEUE number for STA HE TB PPDU transmission"
634
+ depends on SLAVE_SOC_WIFI_HE_SUPPORT
635
+ range 1 4
636
+ default 3
637
+ help
638
+ Set the maximum number of queue that can be aggregated by the STA in the A-MPDU carried in the
639
+ HE TB PPDU.
640
+
641
+ config ESP_WIFI_ENABLE_DUMP_HESIGB
642
+ bool "Enable Wi-Fi dump HE-SIGB which is contained in DL HE MU PPDUs"
643
+ depends on SLAVE_SOC_WIFI_HE_SUPPORT_5G
644
+ default "n"
645
+ help
646
+ Enable Wi-Fi dump HE-SIGB which is contained in DL HE MU PPDUs.
647
+
648
+ config ESP_WIFI_ENABLE_DUMP_MU_CFO
649
+ bool "Enable Wi-Fi dump MU CFO"
650
+ depends on SLAVE_SOC_WIFI_HE_SUPPORT_5G
651
+ default "n"
652
+ help
653
+ Enable Wi-Fi dump MU CFO.
654
+
655
+ config ESP_WIFI_ENABLE_DUMP_CTRL_NDPA
656
+ bool "Enable Wi-Fi dump NDPA frames"
657
+ depends on SLAVE_SOC_WIFI_HE_SUPPORT_5G
658
+ default "n"
659
+ help
660
+ Enable Wi-Fi dump NDPA frames.
661
+
662
+ config ESP_WIFI_ENABLE_DUMP_CTRL_BFRP
663
+ bool "Enable Wi-Fi dump BFRP frames"
664
+ depends on SLAVE_SOC_WIFI_HE_SUPPORT_5G
665
+ default "n"
666
+ help
667
+ Enable Wi-Fi dump BFRP frames.
668
+
615
669
menu "WPS Configuration Options"
616
670
config ESP_WIFI_WPS_STRICT
617
671
bool "Strictly validate all WPS attributes"
0 commit comments