]> granicus.if.org Git - esp-idf/commitdiff
Cosmetic Kconfig fixes
authorRoland Dobai <dobai.roland@gmail.com>
Fri, 4 Oct 2019 10:14:05 +0000 (12:14 +0200)
committerbot <bot@espressif.com>
Tue, 8 Oct 2019 08:11:53 +0000 (08:11 +0000)
components/esp_common/Kconfig
examples/protocols/websocket/main/Kconfig.projbuild

index ca5608b8e4ae73042b55362c2947ff94db9153aa..d4cdf96a85b1f6175daff7d1ab1cab4e4f8e21eb 100644 (file)
@@ -40,9 +40,10 @@ menu "Common ESP-related"
 
     config ESP_IPC_TASK_STACK_SIZE
         int "Inter-Processor Call (IPC) task stack size"
-        default 1024
         range 512 65536 if !ESP32_APPTRACE_ENABLE
         range 2048 65536 if ESP32_APPTRACE_ENABLE
+        default 2048 if ESP32_APPTRACE_ENABLE
+        default 1024
         help
             Configure the IPC tasks stack size. One IPC task runs on each core
             (in dual core mode), and allows for cross-core function calls.
index 6af61c8f942b22a25a184d9d754ad84bc0d6c6fb..7790aa248b445e514f70322fa4bba7aade3eadb9 100644 (file)
@@ -2,7 +2,7 @@ menu "Example Configuration"
 
     config WEBSOCKET_URI
         string "Websocket endpoint URI"
-        default "ws://echo.websocket.org";
+        default "ws://echo.websocket.org"
         help
             URL of websocket endpoint this example connects to and sends echo