From 78822d03be3b5b5add32177656acb540d2cc44be Mon Sep 17 00:00:00 2001 From: Jennifer Wilcox Date: Sun, 15 Jan 2023 17:57:30 -0600 Subject: [PATCH] Ignore clock and active sensing on serial MIDI Fixes #416 I'm not entirely sure this is the correct way to fix it. But it does seem to fix the problem I was seeing. I can now completely mash the keyboard and no notes will get stuck on. --- src/serialmididevice.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/serialmididevice.cpp b/src/serialmididevice.cpp index 186efc3..a027cf4 100644 --- a/src/serialmididevice.cpp +++ b/src/serialmididevice.cpp @@ -109,6 +109,10 @@ void CSerialMIDIDevice::Process (void) } continue; } + else if(uchData == 0xF8 || uchData == 0xFE) + { + continue; + } else { switch (m_nSerialState)