From e4fe08f54caef80c03a0ee84553ef0c3a759f438 Mon Sep 17 00:00:00 2001 From: Manuel Weiser Date: Sun, 23 Mar 2025 10:41:28 +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. */