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
uint8_t ucSysExChannel = (pMessage[2] & 0x07) + 1;
if (ucStatus == MIDI_SYSTEM_EXCLUSIVE_BEGIN &&
(ucSysExChannel == m_ChannelMap[nTG] ||
ucSysExChannel == OmniMode)
(m_ChannelMap[nTG] == ucSysExChannel ||
m_ChannelMap[nTG] == OmniMode)
)
{
LOGNOTE("MIDI-SYSEX: channel: %u, len: %u, TG: %u",m_ChannelMap[nTG],nTG);

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

Loading…
Cancel
Save