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
When the MIDI connection is not active on the PC-side, there's a 250 ms timeout that blocks the entire program every time you (try to) send MIDI messages.
Is there a way to check if the connection is active beforehand?
E.g. if (MidiUSB) MidiUSB.send(...);
The bool operator is declared in the header file, but it isn't yet implemented, and I couldn't find anything useful in the USB superclass that I could use.
Is there any way to resolve this issue?
Thanks,
Pieter
The text was updated successfully, but these errors were encountered:
When the MIDI connection is not active on the PC-side, there's a 250 ms timeout that blocks the entire program every time you (try to) send MIDI messages.
Is there a way to check if the connection is active beforehand?
E.g.
if (MidiUSB) MidiUSB.send(...);
The
bool
operator is declared in the header file, but it isn't yet implemented, and I couldn't find anything useful in the USB superclass that I could use.Is there any way to resolve this issue?
Thanks,
Pieter
The text was updated successfully, but these errors were encountered: