Skip to content

Commit

Permalink
Merge pull request #228 from kivancsikert/mqtt/fix-stack-size
Browse files Browse the repository at this point in the history
Gove MQTT more stack
  • Loading branch information
lptr authored Oct 12, 2024
2 parents c308372 + a5c329e commit c263971
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/kernel/drivers/MqttDriver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ class MqttDriver {
, mqttReady(mqttReady) {
Task::run("mqtt:init", 4096, [this](Task& task) {
setup();
Task::run("mqtt", 4096, [this](Task& task) {
Task::run("mqtt", 5120, [this](Task& task) {
runEventLoop(task);
});
Task::loop("mqtt:incoming", 4096, [this](Task& task) {
Expand Down

0 comments on commit c263971

Please sign in to comment.