increase stack size for BambuMqtt task

This commit is contained in:
2025-03-23 16:27:20 +01:00
parent e55b2d7fdf
commit 6534419381
+1 -1
View File
@@ -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. */