|
|
|
@ -20,6 +20,7 @@ |
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
//
|
|
|
|
|
#include <cstring> |
|
|
|
|
#include "serialmididevice.h" |
|
|
|
|
#include <assert.h> |
|
|
|
|
|
|
|
|
@ -29,6 +30,7 @@ CSerialMIDIDevice::CSerialMIDIDevice (CMiniDexed *pSynthesizer, CInterruptSystem |
|
|
|
|
m_pConfig (pConfig), |
|
|
|
|
m_Serial (pInterrupt, TRUE), |
|
|
|
|
m_nSerialState (0), |
|
|
|
|
m_nSysEx (0), |
|
|
|
|
m_SendBuffer (&m_Serial) |
|
|
|
|
{ |
|
|
|
|
AddDevice ("ttyS1"); |
|
|
|
@ -57,6 +59,14 @@ void CSerialMIDIDevice::Process (void) |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(Buffer[0] == 0xF0) |
|
|
|
|
{ |
|
|
|
|
// SYSEX found
|
|
|
|
|
m_nSysEx=nResult; |
|
|
|
|
memcpy(m_SerialMessage, Buffer, nResult); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Process MIDI messages
|
|
|
|
|
// See: https://www.midi.org/specifications/item/table-1-summary-of-midi-message
|
|
|
|
|
// "Running status" see: https://www.lim.di.unimi.it/IEEE/MIDI/SOT5.HTM#Running-
|
|
|
|
@ -65,54 +75,63 @@ void CSerialMIDIDevice::Process (void) |
|
|
|
|
{ |
|
|
|
|
u8 uchData = Buffer[i]; |
|
|
|
|
|
|
|
|
|
switch (m_nSerialState) |
|
|
|
|
if(m_nSysEx > 0) |
|
|
|
|
{ |
|
|
|
|
case 0: |
|
|
|
|
MIDIRestart: |
|
|
|
|
if ( (uchData & 0x80) == 0x80 // status byte, all channels
|
|
|
|
|
&& (uchData & 0xF0) != 0xF0) // ignore system messages
|
|
|
|
|
{ |
|
|
|
|
m_SerialMessage[m_nSerialState++] = uchData; |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
case 1: |
|
|
|
|
case 2: |
|
|
|
|
DATABytes: |
|
|
|
|
if (uchData & 0x80) // got status when parameter expected
|
|
|
|
|
{ |
|
|
|
|
m_nSerialState = 0; |
|
|
|
|
|
|
|
|
|
goto MIDIRestart; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
m_SerialMessage[m_nSerialState++] = uchData; |
|
|
|
|
|
|
|
|
|
if ( (m_SerialMessage[0] & 0xE0) == 0xC0 |
|
|
|
|
|| m_nSerialState == 3) // message is complete
|
|
|
|
|
m_SerialMessage[m_nSysEx++]=uchData; |
|
|
|
|
if ((uchData & 0x80) == 0x80 || m_nSysEx >= MAX_MIDI_MESSAGE) |
|
|
|
|
{ |
|
|
|
|
MIDIMessageHandler (m_SerialMessage, m_nSerialState); |
|
|
|
|
|
|
|
|
|
m_nSerialState = 4; // State 4 for test if 4th byte is a status byte or a data byte
|
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
case 4: |
|
|
|
|
|
|
|
|
|
if ((uchData & 0x80) == 0) // true data byte, false status byte
|
|
|
|
|
{ |
|
|
|
|
m_nSerialState = 1; |
|
|
|
|
goto DATABytes; |
|
|
|
|
if(uchData == 0xF7) |
|
|
|
|
MIDIMessageHandler (m_SerialMessage, m_nSysEx); |
|
|
|
|
m_nSysEx = 0; |
|
|
|
|
} |
|
|
|
|
else
|
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
switch (m_nSerialState) |
|
|
|
|
{ |
|
|
|
|
m_nSerialState = 0; |
|
|
|
|
goto MIDIRestart;
|
|
|
|
|
case 0: |
|
|
|
|
MIDIRestart: |
|
|
|
|
if ( (uchData & 0x80) == 0x80 // status byte, all channels
|
|
|
|
|
&& (uchData & 0xF0) != 0xF0) // ignore system messages
|
|
|
|
|
{ |
|
|
|
|
m_SerialMessage[m_nSerialState++] = uchData; |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
case 1: |
|
|
|
|
case 2: |
|
|
|
|
DATABytes: |
|
|
|
|
if (uchData & 0x80) // got status when parameter expected
|
|
|
|
|
{ |
|
|
|
|
m_nSerialState = 0; |
|
|
|
|
|
|
|
|
|
goto MIDIRestart; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
m_SerialMessage[m_nSerialState++] = uchData; |
|
|
|
|
|
|
|
|
|
if ( (m_SerialMessage[0] & 0xE0) == 0xC0 |
|
|
|
|
|| m_nSerialState == 3) // message is complete
|
|
|
|
|
{ |
|
|
|
|
MIDIMessageHandler (m_SerialMessage, m_nSerialState); |
|
|
|
|
|
|
|
|
|
m_nSerialState = 4; // State 4 for test if 4th byte is a status byte or a data byte
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
break; |
|
|
|
|
case 4: |
|
|
|
|
|
|
|
|
|
if ((uchData & 0x80) == 0) // true data byte, false status byte
|
|
|
|
|
{ |
|
|
|
|
m_nSerialState = 1; |
|
|
|
|
goto DATABytes; |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
default: |
|
|
|
|
assert (0); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
default: |
|
|
|
|
assert (0); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|