-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MIDI.sendRealTime seems not working properly over USB #16
Comments
Supplement: I reduced the example code AllEvents to this: #include <USB-MIDI.h> USBMIDI_CREATE_DEFAULT_INSTANCE(); unsigned long t0 = millis(); using namespace MIDI_NAMESPACE; // ----------------------------------------------------------------------------- } // ----------------------------------------------------------------------------- // send a note every second
} if ((millis() - tClock) > 100) And here a a few lines out of my log in midi-ox: 00007BE4 5 -- F8 -- -- -- --- Timing Clock The complete log is here regards Bernd |
I installed the example code "AllEvents" on my Arduino Leonardo.
Most time, I do not get the Midi-NoteOn-Message from this example on my USB-Port. I Checked it with midi-ox unter windows 10 and even unter Ubuntu.
It seems that sending a MIDI-SendRealTime message like "MIDI.sendRealTime(MidiType::Clock);" corrupts a following Midi-Message most times.
I disabled the output on serial port an still got this error.
I changed the MIDI-sendRealTime - Message from "Clock" to "Start". I get still this error.
I added a second MIDI-sendRealTime-Message in the example code. I only see the first MIDI.sendRealTime-Message in midi-ox.
I don't have a clue.
Regards Bernd
The text was updated successfully, but these errors were encountered: