From 0963be04334cdccd3e7ad0fc43de1eea30d14441 Mon Sep 17 00:00:00 2001 From: Mitch Bradley Date: Sun, 1 Aug 2021 08:49:34 -1000 Subject: [PATCH] Larger stack for clientCheckTask - WebUI SD list overflowed it --- Grbl_Esp32/src/Serial.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Grbl_Esp32/src/Serial.cpp b/Grbl_Esp32/src/Serial.cpp index 9150a296..73a5ef94 100644 --- a/Grbl_Esp32/src/Serial.cpp +++ b/Grbl_Esp32/src/Serial.cpp @@ -114,7 +114,7 @@ void client_init() { // after WebUI attaches. xTaskCreatePinnedToCore(clientCheckTask, // task "clientCheckTask", // name for task - 4096, // size of task stack + 8192, // size of task stack NULL, // parameters 1, // priority &clientCheckTaskHandle,