From d3ed17acd7360caafb5e7d84f8eedd2c353801ce Mon Sep 17 00:00:00 2001 From: Roland Dobai Date: Fri, 4 Oct 2019 12:14:05 +0200 Subject: [PATCH] Cosmetic Kconfig fixes --- components/esp_common/Kconfig | 3 ++- examples/protocols/websocket/main/Kconfig.projbuild | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/components/esp_common/Kconfig b/components/esp_common/Kconfig index ca5608b8e4..d4cdf96a85 100644 --- a/components/esp_common/Kconfig +++ b/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. diff --git a/examples/protocols/websocket/main/Kconfig.projbuild b/examples/protocols/websocket/main/Kconfig.projbuild index 6af61c8f94..7790aa248b 100644 --- a/examples/protocols/websocket/main/Kconfig.projbuild +++ b/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