Update serialmididevice.cpp

pull/206/head
arsamus 3 years ago committed by GitHub
parent 401ea2f818
commit 139e7c7871
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 116
      src/serialmididevice.cpp

@ -83,70 +83,78 @@ void CSerialMIDIDevice::Process (void)
{ {
u8 uchData = Buffer[i]; u8 uchData = Buffer[i];
if(uchData == 0xF0) switch (m_nSerialState)
{ {
// SYSEX found case 0:
m_SerialMessage[m_nSysEx++]=uchData; MIDIRestart:
continue; if ( (uchData & 0x80) == 0x80 // status byte, all channels
} && (uchData & 0xF0) != 0xF0) // ignore system messages
{
m_SerialMessage[m_nSerialState++] = uchData;
}
if (uchData == 0xF0) // SysEx status Byte jumps to m_nSerialState=5 and iniciate reading
{
m_nSerialState = 5;
m_nSysEx = 0;
goto MIDISysEx;
}
break;
if(m_nSysEx > 0) case 1:
{ case 2:
m_SerialMessage[m_nSysEx++]=uchData; DATABytes:
if ((uchData & 0x80) == 0x80 || m_nSysEx >= MAX_MIDI_MESSAGE) if (uchData & 0x80) // got status when parameter expected
{ {
if(uchData == 0xF7) m_nSerialState = 0;
MIDIMessageHandler (m_SerialMessage, m_nSysEx);
m_nSysEx = 0; goto MIDIRestart;
} }
continue;
} m_SerialMessage[m_nSerialState++] = uchData;
else
{ if ( (m_SerialMessage[0] & 0xE0) == 0xC0
switch (m_nSerialState) || m_nSerialState == 3) // message is complete
{ {
case 0: MIDIMessageHandler (m_SerialMessage, m_nSerialState);
MIDIRestart:
if ( (uchData & 0x80) == 0x80 // status byte, all channels m_nSerialState = 4; // State 4 for test if 4th byte is a status byte or a data byte
&& (uchData & 0xF0) != 0xF0) // ignore system messages }
{ break;
m_SerialMessage[m_nSerialState++] = uchData; case 4: // Running Status evaluation
}
break; if ((uchData & 0x80) == 0) // true data byte, false status byte
{
case 1: m_nSerialState = 1; // Byte 0 not change on Running Status
case 2: goto DATABytes;
DATABytes: }
if (uchData & 0x80) // got status when parameter expected else
{ {
m_nSerialState = 0; m_nSerialState = 0;
goto MIDIRestart; // This is necessary in order to not miss the first byte
goto MIDIRestart;
} }
break;
m_SerialMessage[m_nSerialState++] = uchData; case 5: // SyxEx reading
MIDISysEx:
if ( (m_SerialMessage[0] & 0xE0) == 0xC0 m_SerialMessage[m_nSysEx++] = uchData;
|| m_nSerialState == 3) // message is complete if (((uchData & 0x80) && m_nSysEx > 1 ) || m_nSysEx >= MAX_MIDI_MESSAGE)
{
m_nSerialState = 0; //New Status byte ends SerialState 5 (SysEx reading)
if (uchData == 0xF7)
{ {
MIDIMessageHandler (m_SerialMessage, m_nSerialState); MIDIMessageHandler (m_SerialMessage, m_nSysEx);
m_nSerialState = 4; // State 4 for test if 4th byte is a status byte or a data byte
} }
else
break;
case 4:
if ((uchData & 0x80) == 0) // true data byte, false status byte
{ {
m_nSerialState = 1; goto MIDIRestart; //other status byte abort SysEx process and jump to MIDIRestart in order to not miss the byte
goto DATABytes;
} }
break;
default:
assert (0);
break;
} }
break;
default:
assert (0);
break;
} }
} }
} }

Loading…
Cancel
Save