1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-15 11:04:16 +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.
xTaskCreatePinnedToCore(clientCheckTask, // task
"clientCheckTask", // name for task
4096, // size of task stack
8192, // size of task stack
NULL, // parameters
1, // priority
&clientCheckTaskHandle,