You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have solved the issue, but I can't be the only one. Using this to accept USB MIDI from an EWI and sent to BLE (Nano 33 ioT will do since it has m0) RP2040 connect might be better.
Anyway the solution is to add a bit of Delay to the loop. Of course I want as little latency as possible delayMicroseconds(250); is too little if only going USB --> UART delayMicroseconds(500); has worked in testing and delay(1); before the last } of loop() is plenty to give it enough time.
The text was updated successfully, but these errors were encountered:
I have solved the issue, but I can't be the only one. Using this to accept USB MIDI from an EWI and sent to BLE (Nano 33 ioT will do since it has m0) RP2040 connect might be better.
Anyway the solution is to add a bit of Delay to the loop. Of course I want as little latency as possible
delayMicroseconds(250);
is too little if only going USB --> UARTdelayMicroseconds(500);
has worked in testing anddelay(1);
before the last}
ofloop()
is plenty to give it enough time.The text was updated successfully, but these errors were encountered: