gustavonihei commented on a change in pull request #3040:
URL: https://github.com/apache/incubator-nuttx/pull/3040#discussion_r594697787



##########
File path: arch/risc-v/src/esp32c3/Kconfig
##########
@@ -283,4 +297,84 @@ endif # ESP32C3_UART1
 
 endmenu
 
+menu "Real-Time Timer"
+       depends on ESP32C3_RT_TIMER
+
+config ESP32C3_RT_TIMER_TASK_NAME
+       string "Timer task name"
+       default "rt_timer"
+
+config ESP32C3_RT_TIMER_TASK_PRIORITY
+       int "Timer task priority"
+       default 223 # Lower than high priority workqueue
+
+config ESP32C3_RT_TIMER_TASK_STACK_SIZE
+       int "Timer task stack size"
+       default 2048
+
+endmenu # Real-Time Timer
+
+menu "WiFi configuration"
+       depends on ESP32C3_WIRELESS
+
+config ESP32C3_WIFI_STATIC_RXBUF_NUM
+    int "WiFi static RX buffer number"
+       default 10
+
+config ESP32C3_WIFI_DYNAMIC_RXBUF_NUM
+    int "WiFi dynamic RX buffer number"
+       default 32
+
+config ESP32C3_WIFI_DYNAMIC_TXBUF_NUM
+    int "WiFi dynamic TX buffer number"
+       default 32
+
+config ESP32C3_WIFI_TX_AMPDU
+       bool "WiFi TX AMPDU"
+       default y
+
+config ESP32C3_WIFI_RX_AMPDU
+       bool "WiFi RX AMPDU"
+       default y
+
+config ESP32C3_WIFI_RXBA_AMPDU_WZ
+    int "WiFi RX BA AMPDU windown size"

Review comment:
       ```suggestion
         int "WiFi RX BA AMPDU windown size"
   ```
   nit: Alignment issue




----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to