fix: add Bridge.run() to loop() so MCU processes incoming RPCs
Validate and Test / validate-patches (push) Failing after 13s
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:
+2
-1
@@ -121,5 +121,6 @@ void setup() {
|
||||
}
|
||||
|
||||
void loop() {
|
||||
delay(1000);
|
||||
Bridge.run();
|
||||
delay(1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user