Reenabled showing incomfing MIDI data when MIDI-DUmp is enabled.

Fix for using MIDI channel for SYSEX.
pull/247/head
Holger Wirtz 3 years ago
parent 8a143af078
commit 7e4e650649
  1. 4
      src/mididevice.cpp
  2. 2
      src/serialmididevice.cpp

@ -166,8 +166,8 @@ void CMIDIDevice::MIDIMessageHandler (const u8 *pMessage, size_t nLength, unsign
// MIDI SYSEX per MIDI channel // MIDI SYSEX per MIDI channel
uint8_t ucSysExChannel = (pMessage[2] & 0x07) + 1; uint8_t ucSysExChannel = (pMessage[2] & 0x07) + 1;
if (ucStatus == MIDI_SYSTEM_EXCLUSIVE_BEGIN && if (ucStatus == MIDI_SYSTEM_EXCLUSIVE_BEGIN &&
(ucSysExChannel == m_ChannelMap[nTG] || (m_ChannelMap[nTG] == ucSysExChannel ||
ucSysExChannel == OmniMode) 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],nTG);

@ -66,7 +66,6 @@ void CSerialMIDIDevice::Process (void)
return; return;
} }
/*
if (m_pConfig->GetMIDIDumpEnabled ()) if (m_pConfig->GetMIDIDumpEnabled ())
{ {
printf("Incoming MIDI data:"); printf("Incoming MIDI data:");
@ -78,7 +77,6 @@ void CSerialMIDIDevice::Process (void)
} }
printf("\n"); printf("\n");
} }
*/
// Process MIDI messages // Process MIDI messages
// See: https://www.midi.org/specifications/item/table-1-summary-of-midi-message // See: https://www.midi.org/specifications/item/table-1-summary-of-midi-message

Loading…
Cancel
Save