Skip to content

Commit

Permalink
Merge pull request #10 from YuuichiAkagawa/pr_fix#8
Browse files Browse the repository at this point in the history
Fixed incorrect CIN when sending system messages
  • Loading branch information
lathoub authored May 9, 2021
2 parents 3cc162d + 320d127 commit 866947c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/USB-MIDI.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class usbMidiTransport
else {
// Only System messages
cin = system2cin[status & 0x0F][1];
mPacket.header = MAKEHEADER(cableNumber, 0x04);
mPacket.header = MAKEHEADER(cableNumber, cin);
}

mPacket.byte1 = mPacket.byte2 = mPacket.byte3 = 0;
Expand Down

0 comments on commit 866947c

Please sign in to comment.