Handle all system real time messages in serial

pull/417/head
Jennifer Wilcox 2 years ago
parent 78822d03be
commit 842bb0eda4
  1. 12
      src/serialmididevice.cpp

@ -98,7 +98,13 @@ void CSerialMIDIDevice::Process (void)
continue;
}
if(m_nSysEx > 0)
// System Real Time messages may appear anywhere in the byte stream, so handle them specially
if(uchData == 0xF8 || uchData == 0xFA || uchData == 0xFB || uchData == 0xFC || uchData == 0xFE || uchData == 0xFF)
{
MIDIMessageHandler (&uchData, 1);
continue;
}
else if(m_nSysEx > 0)
{
m_SerialMessage[m_nSysEx++]=uchData;
if ((uchData & 0x80) == 0x80 || m_nSysEx >= MAX_MIDI_MESSAGE)
@ -109,10 +115,6 @@ void CSerialMIDIDevice::Process (void)
}
continue;
}
else if(uchData == 0xF8 || uchData == 0xFE)
{
continue;
}
else
{
switch (m_nSerialState)

Loading…
Cancel
Save