diff --git a/src/activities/network/CrossPointWebServerActivity.cpp b/src/activities/network/CrossPointWebServerActivity.cpp index a55a8dce..0247f63e 100644 --- a/src/activities/network/CrossPointWebServerActivity.cpp +++ b/src/activities/network/CrossPointWebServerActivity.cpp @@ -32,7 +32,8 @@ constexpr UBaseType_t WEBSERVER_TASK_PRIORITY = 5; // Higher priority for res // WiFi performance: handleClient iterations per loop // Higher values improve upload throughput by processing more data per frame -constexpr int HANDLE_CLIENT_ITERATIONS = 50; +// With 200 iterations we can process ~300KB per loop at 1.5KB/chunk +constexpr int HANDLE_CLIENT_ITERATIONS = 200; } // namespace // Apply WiFi performance optimizations for maximum upload throughput