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
On my system, when choosing Casio MIDI device, the input packets are of length 6 and instead of data indices 0, 1, 2 the correct data is in data[3], data[4], and data[5].
If I changed the code in emusc/emusc/src/midi_input_core.cc to
send_midi_event(data[3], data[4], data[5]);
then my Casio MIDI keyboard worked
The text was updated successfully, but these errors were encountered:
On my system, when choosing Casio MIDI device, the input packets are of length 6 and instead of data indices 0, 1, 2 the correct data is in data[3], data[4], and data[5].
If I changed the code in
emusc/emusc/src/midi_input_core.cc
tothen my Casio MIDI keyboard worked
The text was updated successfully, but these errors were encountered: