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
MIDI System Real Time Messages are captured by if event.Status&0xF0 == 0xF0 in stream.Read and return an error because they are not SysEx messages.
There's no data payload for system real time messages so I think there could just be a literal check for messages with a status between 0xF8 and 0xFF.
I'm happy to make that as a PR but I don't want to be presumptuous. I'm pretty new to this repo and to MIDI system messages in general.
The text was updated successfully, but these errors were encountered:
MIDI System Real Time Messages are captured by
if event.Status&0xF0 == 0xF0
in stream.Read and return an error because they are not SysEx messages.There's no data payload for system real time messages so I think there could just be a literal check for messages with a status between 0xF8 and 0xFF.
I'm happy to make that as a PR but I don't want to be presumptuous. I'm pretty new to this repo and to MIDI system messages in general.
The text was updated successfully, but these errors were encountered: