Compare commits

..

2 Commits

Author SHA1 Message Date
Jonathan Bennett
afbd9e2180 Filter BLE updates that don't change pairing status (#9333) 2026-01-16 13:52:04 -06:00
Ben Meadors
64116cd0d3 Meshtastic OTA (moar) (#9327)
* Initial commit of combined BLE and WiFi OTA

* Incorporate ota_hash in AdminMessage protobuf

* OTA protobuf changes

* Trunk fmt

* Partition header check for OTA type

* Guards

* Guards

* Derp

* Missed one

---------

Co-authored-by: Jake-B <jake-b@users.noreply.github.com>
2026-01-15 14:36:36 -06:00

View File

@@ -50,9 +50,10 @@ int StatusLEDModule::handleStatusUpdate(const meshtastic::Status *arg)
break; break;
} }
case meshtastic::BluetoothStatus::ConnectionState::CONNECTED: { case meshtastic::BluetoothStatus::ConnectionState::CONNECTED: {
ble_state = connected; if (ble_state != connected) {
PAIRING_LED_starttime = millis(); ble_state = connected;
break; PAIRING_LED_starttime = millis();
}
} }
} }