|
|
|
@ -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,6 +75,19 @@ void CSerialMIDIDevice::Process (void) |
|
|
|
|
{ |
|
|
|
|
u8 uchData = Buffer[i]; |
|
|
|
|
|
|
|
|
|
if(m_nSysEx > 0) |
|
|
|
|
{ |
|
|
|
|
m_SerialMessage[m_nSysEx++]=uchData; |
|
|
|
|
if ((uchData & 0x80) == 0x80 || m_nSysEx >= MAX_MIDI_MESSAGE) |
|
|
|
|
{ |
|
|
|
|
if(uchData == 0xF7) |
|
|
|
|
MIDIMessageHandler (m_SerialMessage, m_nSysEx); |
|
|
|
|
m_nSysEx = 0; |
|
|
|
|
} |
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
switch (m_nSerialState) |
|
|
|
|
{ |
|
|
|
|
case 0: |
|
|
|
@ -95,6 +118,7 @@ void CSerialMIDIDevice::Process (void) |
|
|
|
|
|
|
|
|
|
m_nSerialState = 4; // State 4 for test if 4th byte is a status byte or a data byte
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
break; |
|
|
|
|
case 4: |
|
|
|
|
|
|
|
|
@ -103,19 +127,14 @@ void CSerialMIDIDevice::Process (void) |
|
|
|
|
m_nSerialState = 1; |
|
|
|
|
goto DATABytes; |
|
|
|
|
} |
|
|
|
|
else
|
|
|
|
|
{ |
|
|
|
|
m_nSerialState = 0; |
|
|
|
|
goto MIDIRestart;
|
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
default: |
|
|
|
|
assert (0); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void CSerialMIDIDevice::Send (const u8 *pMessage, size_t nLength, unsigned nCable) |
|
|
|
|
{ |
|
|
|
|