From faed3056dd861176aa2028edd9c54f14f481fd63 Mon Sep 17 00:00:00 2001 From: Tobias Wohlfrom <54249091+wohlfrom@users.noreply.github.com> Date: Sun, 30 Jun 2024 10:35:31 +0200 Subject: [PATCH] Increase stack size for MQTT task due to SSL handshake --- platformio.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/platformio.ini b/platformio.ini index 987f8b4d..316a920e 100644 --- a/platformio.ini +++ b/platformio.ini @@ -27,6 +27,7 @@ build_flags = -D_TASK_THREAD_SAFE=1 -DCONFIG_ASYNC_TCP_EVENT_QUEUE_SIZE=128 -DCONFIG_ASYNC_TCP_QUEUE_SIZE=128 + -DEMC_TASK_STACK_SIZE=6400 -Wall -Wextra -Wunused -Wmisleading-indentation -Wduplicated-cond -Wlogical-op -Wnull-dereference ; Have to remove -Werror because of ; https://github.com/espressif/arduino-esp32/issues/9044 and