stack for scheduler 5k

This commit is contained in:
MichaelDvP
2024-09-21 14:35:36 +02:00
parent 4905047177
commit 1c7186171e

View File

@@ -40,7 +40,7 @@ void WebSchedulerService::begin() {
Mqtt::subscribe(EMSdevice::DeviceType::SCHEDULER, topic, nullptr); // use empty function callback
#ifndef EMSESP_STANDALONE
if (EMSESP::system_.PSram()) {
xTaskCreate((TaskFunction_t)scheduler_task, "scheduler_task", 4096, NULL, 1, NULL);
xTaskCreate((TaskFunction_t)scheduler_task, "scheduler_task", 5120, NULL, 1, NULL);
}
#endif
}