From 6534419381b9526fd81e1f3c1f4ea91aa237b9cd Mon Sep 17 00:00:00 2001 From: tugsi Date: Sun, 23 Mar 2025 16:27:20 +0100 Subject: [PATCH] increase stack size for BambuMqtt task --- src/bambu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bambu.cpp b/src/bambu.cpp index 3cce9e3..29be378 100644 --- a/src/bambu.cpp +++ b/src/bambu.cpp @@ -634,7 +634,7 @@ bool setupMqtt() { xTaskCreatePinnedToCore( mqtt_loop, /* Function to implement the task */ "BambuMqtt", /* Name of the task */ - 8192, /* Stack size in words */ + 10240, /* Stack size in words */ NULL, /* Task input parameter */ mqttTaskPrio, /* Priority of the task */ &BambuMqttTask, /* Task handle. */