simbit18 commented on code in PR #17008:
URL: https://github.com/apache/nuttx/pull/17008#discussion_r2344248120


##########
arch/xtensa/src/common/espressif/Kconfig:
##########
@@ -1288,49 +1319,182 @@ config ESPRESSIF_WIFI_ENABLE_SAE_H2E
        ---help---
                Select this option to enable SAE-H2E
 
-config ESP_WIFI_ENABLE_WPA3_OWE_STA
+config ESPRESSIF_WIFI_SOFTAP_SAE_SUPPORT
+       bool "Enable WPA3 Personal(SAE) SoftAP"
+       default y
+       depends on ESPRESSIF_WIFI_ENABLE_WPA3_SAE
+       depends on ESPRESSIF_WIFI_SOFTAP || ESPRESSIF_WIFI_STATION_SOFTAP
+       ---help---
+               Select this option to enable SAE support in softAP mode.
+
+config ESPRESSIF_WIFI_ENABLE_WPA3_OWE_STA
        bool "Enable OWE STA"
        default y
        ---help---
                Select this option to allow the device to establish OWE 
connection with eligible AP's.
                PMF (Protected Management Frames) is a prerequisite feature for 
a WPA3 connection, it needs to be
                explicitly configured before attempting connection. Please 
refer to the Wi-Fi Driver API Guide for details.
 
-config ESPRESSIF_WIFI_STATIC_RXBUF_NUM
-       int "Wi-Fi static RX buffer number"
+choice ESPRESSIF_WIFI_MGMT_RX_BUFFER
+       prompt "Type of WiFi RX MGMT buffers"
+       default ESPRESSIF_WIFI_STATIC_RX_MGMT_BUFFER
+       ---help---
+               Select type of WiFi RX MGMT buffers:
+
+               If "Static" is selected, WiFi RX MGMT buffers are allocated 
when WiFi is initialized and released
+               when WiFi is de-initialized. The size of each static RX MGMT 
buffer is fixed to about 500 Bytes.
+
+               If "Dynamic" is selected, each WiFi RX MGMT buffer is allocated 
as needed when a MGMT data frame is
+               received. The MGMT buffer is freed after the MGMT data frame 
has been processed by the WiFi driver.
+
+       config ESPRESSIF_WIFI_STATIC_RX_MGMT_BUFFER
+               bool "Static"
+       config ESPRESSIF_WIFI_DYNAMIC_RX_MGMT_BUFFER
+               bool "Dynamic"

Review Comment:
   @fdcavalcanti remove extra tabs



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to