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



##########
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"
+       default 6
+
+config ESP32C3_WLAN_RXBUF_NUM
+       int "WLAN netcard RX buffer number"
+       default 16
+
+config ESP32C3_WIFI_CONNECT_TIMEOUT
+       int "Connect timeout by second"
+       default 10
+       help
+               Max waiting time of connecting to AP.
+
+config ESP32C3_WIFI_SAVE_PARAM
+       bool "Save WiFi Parameters"
+       default n
+       depends on !DISABLE_MOUNTPOINT
+       help
+               If you enable this option, WiFi adapter parameters will be saved
+               into the file system instead of computing them each time.
+
+               These parameters mainly contains:
+                 - SSID
+                 - Password
+                 - BSSID
+                 - PMK(compute when connecting)
+                 - Author mode
+                 - MAC address
+                 - WiFi hardware configuration parameters
+
+config ESP32C3_WIFI_FS_MOUNTPT
+       string "Save WiFi Parameters"
+       default "/mnt/esp/wifi"
+       depends on ESP32C3_WIFI_SAVE_PARAM
+       help
+               Mount point of WiFi storage file system.

Review comment:
       ```suggestion
                Mount point of Wi-Fi storage file system.
   ```

##########
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"
+       default 6
+
+config ESP32C3_WLAN_RXBUF_NUM
+       int "WLAN netcard RX buffer number"
+       default 16
+
+config ESP32C3_WIFI_CONNECT_TIMEOUT
+       int "Connect timeout by second"
+       default 10
+       help
+               Max waiting time of connecting to AP.
+
+config ESP32C3_WIFI_SAVE_PARAM
+       bool "Save WiFi Parameters"
+       default n
+       depends on !DISABLE_MOUNTPOINT
+       help
+               If you enable this option, WiFi adapter parameters will be saved
+               into the file system instead of computing them each time.
+
+               These parameters mainly contains:
+                 - SSID
+                 - Password
+                 - BSSID
+                 - PMK(compute when connecting)
+                 - Author mode
+                 - MAC address
+                 - WiFi hardware configuration parameters
+
+config ESP32C3_WIFI_FS_MOUNTPT
+       string "Save WiFi Parameters"

Review comment:
       ```suggestion
        string "Save Wi-Fi Parameters"
   ```




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