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 I tried sending MIDI to my Korg minilogue xd, it did not work with the default cable option ( 0 ), So I had a look into the MIDI spec and played around the source of this library and found something. But I can't be sure if this is working by chance or it really makes sense. Could you please verify?
So my understanding is that we get two bulk endpoints, one for IN and one for OUT, rx_ep represents the IN enpoint number and I just assumed it corresponds to the cable number as well.
So in the send method of MIDIDeviceBase I added those lines in the beginning;
if (cable == 0) { cable = rx_ep; }
Does this make sense?
The text was updated successfully, but these errors were encountered:
When I tried sending MIDI to my Korg minilogue xd, it did not work with the default cable option ( 0 ), So I had a look into the MIDI spec and played around the source of this library and found something. But I can't be sure if this is working by chance or it really makes sense. Could you please verify?
So my understanding is that we get two bulk endpoints, one for IN and one for OUT, rx_ep represents the IN enpoint number and I just assumed it corresponds to the cable number as well.
So in the send method of MIDIDeviceBase I added those lines in the beginning;
if (cable == 0) { cable = rx_ep; }
Does this make sense?
The text was updated successfully, but these errors were encountered: