firmware_deploy #3

Merged
andre.fiedler merged 37 commits from firmware_deploy into master 2026-03-13 10:06:00 +00:00
28 changed files with 3125 additions and 1849 deletions
Showing only changes of commit 7c893c0966 - Show all commits

View File

@@ -516,7 +516,8 @@ void startWebInterface()
WiFi.begin(g_sWifiSsid.c_str(), g_sWifiPassword.c_str());
const unsigned long connectStart = millis();
const unsigned long connectTimeoutMs = 10000;
const unsigned long connectTimeoutMs = 20000;
Serial.println(String("Trying to connect to Wifi: ") + g_sWifiSsid.c_str() + g_sWifiPassword.c_str());
while (WiFi.status() != WL_CONNECTED && millis() - connectStart < connectTimeoutMs)
{
delay(250);