From 440941accbd5ebfdb0ca2acfad9a2579cf582f2a Mon Sep 17 00:00:00 2001 From: Lorow Date: Tue, 4 Nov 2025 21:43:55 +0100 Subject: [PATCH] Fix Mongoose stackoverflow --- main/openiris_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/openiris_main.cpp b/main/openiris_main.cpp index 5324ba1..a1e26c5 100644 --- a/main/openiris_main.cpp +++ b/main/openiris_main.cpp @@ -223,7 +223,7 @@ void startWiFiMode() xTaskCreate( HandleRestAPIPollTask, "HandleRestAPIPollTask", - 1024 * 2, + 2024 * 2, restAPI.get(), 1, // it's the rest API, we only serve commands over it so we don't really need a higher priority nullptr);