소스 검색

Cosmetic Kconfig fixes

Roland Dobai 6 년 전
부모
커밋
d3ed17acd7
2개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 1
      components/esp_common/Kconfig
  2. 1 1
      examples/protocols/websocket/main/Kconfig.projbuild

+ 2 - 1
components/esp_common/Kconfig

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

+ 1 - 1
examples/protocols/websocket/main/Kconfig.projbuild

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