We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dec51c commit 58193dcCopy full SHA for 58193dc
Firmware/RTK_Everywhere/WebServer.ino
@@ -63,8 +63,8 @@ static int last_ws_fd;
63
64
static TaskHandle_t updateWebServerTaskHandle;
65
static const uint8_t updateWebServerTaskPriority = 0; // 3 being the highest, and 0 being the lowest
66
-static const int webServerTaskStackSize = 4096; // Needs to be large enough to hold the file manager file list
67
-static const int webSocketStackSize = 8192;
+static const int webServerTaskStackSize = 1024 * 4;
+static const int webSocketStackSize = 1024 * 20; // Needs to be large enough to hold the file manager file list
68
69
// Inspired by:
70
// https://github.com/espressif/arduino-esp32/blob/master/libraries/WebServer/examples/MultiHomedServers/MultiHomedServers.ino
0 commit comments