fix: increase HTTP server stack size to 16KB to prevent MP3 decode stack overflow and reset I2S controller on stop to eliminate static noise

This commit is contained in:
Adolfo Reyna
2026-06-27 10:00:36 -04:00
parent 598af546fd
commit 0ae9b43f87
2 changed files with 17 additions and 13 deletions
@@ -516,7 +516,7 @@ bool WebServerService::startServer() {
settings.webServerPort,
"0.0.0.0",
handlers,
8192 // Stack size
16384 // Stack size
);
httpServer->start();