From 7e4e650649619db314f522c659c0d57b57e6fb43 Mon Sep 17 00:00:00 2001 From: Holger Wirtz Date: Fri, 20 May 2022 08:49:19 +0200 Subject: [PATCH] Reenabled showing incomfing MIDI data when MIDI-DUmp is enabled. Fix for using MIDI channel for SYSEX. --- src/mididevice.cpp | 4 ++-- src/serialmididevice.cpp | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/mididevice.cpp b/src/mididevice.cpp index de22a71..c7ec76b 100644 --- a/src/mididevice.cpp +++ b/src/mididevice.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); diff --git a/src/serialmididevice.cpp b/src/serialmididevice.cpp index fd25a28..c3f2788 100644 --- a/src/serialmididevice.cpp +++ b/src/serialmididevice.cpp @@ -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