From fc33baa472696dc6dd4c4e2078ebab073b817088 Mon Sep 17 00:00:00 2001 From: nick Date: Thu, 4 Jun 2026 20:35:26 -0600 Subject: [PATCH] Restore default BMS BLE connection timeout --- firmware/esp32/overland-controller/bms.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/firmware/esp32/overland-controller/bms.cpp b/firmware/esp32/overland-controller/bms.cpp index 583b8cf..88a9495 100644 --- a/firmware/esp32/overland-controller/bms.cpp +++ b/firmware/esp32/overland-controller/bms.cpp @@ -317,9 +317,6 @@ static bool connectBms() { client = NimBLEDevice::createClient(); - // Keep failed/out-of-range BMS attempts from freezing the web UI too long. - client->setConnectTimeout(10); - if (!client->connect(address)) { Serial.println("BMS: Connect failed"); bmsData.connected = false;