1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-16 03:24:15 +02:00

Larger stack for clientCheckTask - WebUI SD list overflowed it

This commit is contained in:
Mitch Bradley
2021-08-01 08:49:34 -10:00
parent 6ddbb7ce84
commit 0963be0433

View File

@@ -114,7 +114,7 @@ void client_init() {
// after WebUI attaches. // after WebUI attaches.
xTaskCreatePinnedToCore(clientCheckTask, // task xTaskCreatePinnedToCore(clientCheckTask, // task
"clientCheckTask", // name for task "clientCheckTask", // name for task
4096, // size of task stack 8192, // size of task stack
NULL, // parameters NULL, // parameters
1, // priority 1, // priority
&clientCheckTaskHandle, &clientCheckTaskHandle,