fix serial settings loop regression argh

This commit is contained in:
pelgraine
2026-03-05 19:13:29 +11:00
parent e91ad4bac4
commit 859919348d
+5 -3
View File
@@ -2723,9 +2723,11 @@ void MyMesh::checkSerialInterface() {
void MyMesh::loop() {
BaseChatMesh::loop();
if (_cli_rescue) {
checkCLIRescueCmd();
} else {
// Always check USB serial for text CLI commands (independent of BLE)
checkCLIRescueCmd();
// Process BLE/WiFi companion app binary frames
if (!_cli_rescue) {
checkSerialInterface();
}