cargo: increase STA WiFi connect window

This commit is contained in:
2026-06-23 10:18:18 -06:00
parent c96ef5e7cc
commit 24e86e2eb1
2 changed files with 2 additions and 2 deletions
@@ -2091,7 +2091,7 @@ void connectStaWifi() {
WiFi.begin(staSsids[i].c_str(), staPasswords[i].c_str()); WiFi.begin(staSsids[i].c_str(), staPasswords[i].c_str());
unsigned long start = millis(); unsigned long start = millis();
while (WiFi.status() != WL_CONNECTED && millis() - start < 3000) { while (WiFi.status() != WL_CONNECTED && millis() - start < 8000) {
server.handleClient(); server.handleClient();
oledLoop(); oledLoop();
delay(100); delay(100);
@@ -1,4 +1,4 @@
#pragma once #pragma once
#define FIRMWARE_VERSION "0.5.4-bms-static-cleanup" #define FIRMWARE_VERSION "0.5.5-wifi-connect-window-8s"
#define FIRMWARE_NAME "overland-controller" #define FIRMWARE_NAME "overland-controller"