Fix upgrade failure (main task stack overflow)

This commit is contained in:
Terrence
2025-03-30 16:13:49 +08:00
parent fa899a310e
commit 45012e38d4

View File

@@ -346,7 +346,7 @@ void Application::Start() {
Application* app = (Application*)arg;
app->MainLoop();
vTaskDelete(NULL);
}, "main_loop", 4096, this, 4, &main_loop_task_handle_, 0);
}, "main_loop", 4096 * 2, this, 4, &main_loop_task_handle_, 0);
/* Wait for the network to be ready */
board.StartNetwork();