fix: add Bridge.run() to loop() so MCU processes incoming RPCs
Validate and Test / validate-patches (push) Failing after 13s

Without Bridge.run() in loop(), the MCU never reads incoming
draw_frame requests from the router. First frame goes through
during setup handshake, but subsequent frames fill the router's
send buffer and the viz stalls.
This commit is contained in:
2026-06-24 04:57:14 -07:00
parent f43d046153
commit 2968d57e1d
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -121,5 +121,6 @@ void setup() {
}
void loop() {
delay(1000);
Bridge.run();
delay(1);
}