Several fixes for SYSEX handling.

pull/247/head
Holger Wirtz 3 years ago
parent 7e4e650649
commit 2cb0631efc
  1. 12
      src/mididevice.cpp

@ -162,17 +162,17 @@ void CMIDIDevice::MIDIMessageHandler (const u8 *pMessage, size_t nLength, unsign
else else
{ {
for (unsigned nTG = 0; nTG < CConfig::ToneGenerators; nTG++) for (unsigned nTG = 0; nTG < CConfig::ToneGenerators; nTG++)
{
if (ucStatus == MIDI_SYSTEM_EXCLUSIVE_BEGIN)
{ {
// MIDI SYSEX per MIDI channel // MIDI SYSEX per MIDI channel
uint8_t ucSysExChannel = (pMessage[2] & 0x07) + 1; uint8_t ucSysExChannel = (pMessage[2] & 0x07);
if (ucStatus == MIDI_SYSTEM_EXCLUSIVE_BEGIN && if (m_ChannelMap[nTG] == ucSysExChannel || m_ChannelMap[nTG] == OmniMode)
(m_ChannelMap[nTG] == ucSysExChannel ||
m_ChannelMap[nTG] == OmniMode)
)
{ {
LOGNOTE("MIDI-SYSEX: channel: %u, len: %u, TG: %u",m_ChannelMap[nTG],nTG); LOGNOTE("MIDI-SYSEX: channel: %u, len: %u, TG: %u",m_ChannelMap[nTG],nLength,nTG);
HandleSystemExclusive(pMessage, nLength, nTG); HandleSystemExclusive(pMessage, nLength, nTG);
} }
}
else else
{ {
if ( m_ChannelMap[nTG] == ucChannel if ( m_ChannelMap[nTG] == ucChannel

Loading…
Cancel
Save