Hello, people,
I’m trying to send a MIDI tuning SysEx message and I’m getting an access violation in juce_Win32_midi.cpp at line 617. My code looks like this:
uint8 midiNote = 69;
const uint8 rawSysEx[10] = {0x7F, 0x7F, 0x08, 0x02, 0x00, 0x01, midiNote, midiNote, 0x00, 0x00};
MidiMessage mySysEx = MidiMessage::createSysExMessage(rawSysEx,10);
midiOutput->sendMessageNow(mySysEx);
What could be wrong? I’m trying to send a test MIDI tuning change message for a single key, according to the site http://www.midi.org/about-midi/tuning.shtml