Added debuging code for showing all incoming MIDI messages.

pull/195/head
Holger Wirtz 3 years ago
parent 53b38dc630
commit fcc1eaa145
  1. 5
      src/mididevice.cpp
  2. 1
      src/minidexed.cpp
  3. 13
      src/serialmididevice.cpp

@ -87,11 +87,6 @@ void CMIDIDevice::MIDIMessageHandler (const u8 *pMessage, size_t nLength, unsign
// The packet contents are just normal MIDI data - see
// https://www.midi.org/specifications/item/table-1-summary-of-midi-message
for (uint16_t i = 0; i < nLength; i++)
{
printf(">>> 0x%02x\n",pMessage[i]);
}
if (m_pConfig->GetMIDIDumpEnabled ())
{
switch (nLength)

@ -256,6 +256,7 @@ void CMiniDexed::Process (bool bPlugAndPlayUpdated)
if (m_bUseSerial)
{
m_SerialMIDI.Process ();
m_SerialMIDI.Process ();
}
m_UI.Process ();

@ -37,6 +37,7 @@ CSerialMIDIDevice::CSerialMIDIDevice (CMiniDexed *pSynthesizer, CInterruptSystem
}
CSerialMIDIDevice::~CSerialMIDIDevice (void)
{
m_nSerialState = 255;
}
@ -59,6 +60,18 @@ void CSerialMIDIDevice::Process (void)
return;
}
printf("Incoming MIDI data:\n");
for (uint16_t i = 0; i < nResult; i++)
{
if((i % 8) == 0)
printf("%04d:",i);
printf(" 0x%02x",Buffer[i]);
if((i > 1 ) && (i % 8) == 0)
printf("\n");
}
printf("\n");
if(Buffer[0] == 0xF0)
{
// SYSEX found

Loading…
Cancel
Save