|
|
|
@ -117,7 +117,7 @@ void CMIDIDevice::MIDIMessageHandler (const u8 *pMessage, size_t nLength, unsign |
|
|
|
|
printf("MIDI%u: SysEx data length: [%d]:",nCable, uint16_t(nLength)); |
|
|
|
|
for (uint16_t i = 0; i < nLength; i++) |
|
|
|
|
{ |
|
|
|
|
if((i % 8) == 0) |
|
|
|
|
if((i % 16) == 0) |
|
|
|
|
printf("\n%04d:",i); |
|
|
|
|
printf(" 0x%02x",pMessage[i]); |
|
|
|
|
} |
|
|
|
@ -130,6 +130,21 @@ void CMIDIDevice::MIDIMessageHandler (const u8 *pMessage, size_t nLength, unsign |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Only for debugging:
|
|
|
|
|
/*
|
|
|
|
|
if(pMessage[0]==MIDI_SYSTEM_EXCLUSIVE_BEGIN) |
|
|
|
|
{ |
|
|
|
|
printf("MIDI%u: SysEx data length: [%d]:",nCable, uint16_t(nLength)); |
|
|
|
|
for (uint16_t i = 0; i < nLength; i++) |
|
|
|
|
{ |
|
|
|
|
if((i % 16) == 0) |
|
|
|
|
printf("\n%04d:",i); |
|
|
|
|
printf(" 0x%02x",pMessage[i]); |
|
|
|
|
} |
|
|
|
|
printf("\n"); |
|
|
|
|
} |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
// Handle MIDI Thru
|
|
|
|
|
if (m_DeviceName.compare (m_pConfig->GetMIDIThruIn ()) == 0) |
|
|
|
|
{ |
|
|
|
@ -170,7 +185,7 @@ void CMIDIDevice::MIDIMessageHandler (const u8 *pMessage, size_t nLength, unsign |
|
|
|
|
if (m_ChannelMap[nTG] == ucSysExChannel || m_ChannelMap[nTG] == OmniMode) |
|
|
|
|
{ |
|
|
|
|
LOGNOTE("MIDI-SYSEX: channel: %u, len: %u, TG: %u",m_ChannelMap[nTG],nLength,nTG); |
|
|
|
|
HandleSystemExclusive(pMessage, nLength, nTG); |
|
|
|
|
HandleSystemExclusive(pMessage, nLength, nCable, nTG); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
@ -311,7 +326,7 @@ void CMIDIDevice::AddDevice (const char *pDeviceName) |
|
|
|
|
s_DeviceMap.insert (std::pair<std::string, CMIDIDevice *> (pDeviceName, this)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void CMIDIDevice::HandleSystemExclusive(const uint8_t* pMessage, const size_t nLength, const uint8_t nTG) |
|
|
|
|
void CMIDIDevice::HandleSystemExclusive(const uint8_t* pMessage, const size_t nLength, const unsigned nCable, const uint8_t nTG) |
|
|
|
|
{ |
|
|
|
|
int16_t sysex_return; |
|
|
|
|
|
|
|
|
@ -324,33 +339,33 @@ void CMIDIDevice::HandleSystemExclusive(const uint8_t* pMessage, const size_t nL |
|
|
|
|
LOGERR("SysEx end status byte not detected."); |
|
|
|
|
break; |
|
|
|
|
case -2: |
|
|
|
|
LOGERR("E: SysEx vendor not Yamaha."); |
|
|
|
|
LOGERR("SysEx vendor not Yamaha."); |
|
|
|
|
break; |
|
|
|
|
case -3: |
|
|
|
|
LOGERR("E: Unknown SysEx parameter change."); |
|
|
|
|
LOGERR("Unknown SysEx parameter change."); |
|
|
|
|
break; |
|
|
|
|
case -4: |
|
|
|
|
LOGERR(" Unknown SysEx voice or function."); |
|
|
|
|
LOGERR("Unknown SysEx voice or function."); |
|
|
|
|
break; |
|
|
|
|
case -5: |
|
|
|
|
LOGERR("E: Not a SysEx voice bulk upload."); |
|
|
|
|
LOGERR("Not a SysEx voice bulk upload."); |
|
|
|
|
break; |
|
|
|
|
case -6: |
|
|
|
|
LOGERR("E: Wrong length for SysEx voice bulk upload (not 155)."); |
|
|
|
|
LOGERR("Wrong length for SysEx voice bulk upload (not 155)."); |
|
|
|
|
break; |
|
|
|
|
case -7: |
|
|
|
|
LOGERR("E: Checksum error for one voice."); |
|
|
|
|
LOGERR("Checksum error for one voice."); |
|
|
|
|
break; |
|
|
|
|
case -8: |
|
|
|
|
LOGERR("E: Not a SysEx bank bulk upload."); |
|
|
|
|
LOGERR("Not a SysEx bank bulk upload."); |
|
|
|
|
break; |
|
|
|
|
case -9: |
|
|
|
|
LOGERR("E: Wrong length for SysEx bank bulk upload (not 4096)."); |
|
|
|
|
LOGERR("Wrong length for SysEx bank bulk upload (not 4096)."); |
|
|
|
|
case -10: |
|
|
|
|
LOGERR("E: Checksum error for bank."); |
|
|
|
|
LOGERR("Checksum error for bank."); |
|
|
|
|
break; |
|
|
|
|
case -11: |
|
|
|
|
LOGERR("E: Unknown SysEx message."); |
|
|
|
|
LOGERR("Unknown SysEx message."); |
|
|
|
|
break; |
|
|
|
|
case 64: |
|
|
|
|
LOGDBG("SysEx Function parameter change: %d Value %d",pMessage[4],pMessage[5]); |
|
|
|
@ -420,9 +435,37 @@ void CMIDIDevice::HandleSystemExclusive(const uint8_t* pMessage, const size_t nL |
|
|
|
|
LOGNOTE("Currently code for storing a bulk bank upload is missing!"); |
|
|
|
|
break; |
|
|
|
|
default: |
|
|
|
|
LOGDBG("SysEx voice parameter change: Parameter %d value: %d",pMessage[4] + ((pMessage[3] & 0x03) * 128), pMessage[5]); |
|
|
|
|
m_pSynthesizer->setVoiceDataElement(pMessage[4] + ((pMessage[3] & 0x03) * 128), pMessage[5],nTG); |
|
|
|
|
if(sysex_return >= 300 && sysex_return < 500) |
|
|
|
|
{ |
|
|
|
|
LOGDBG("SysEx voice parameter change: Parameter %d value: %d",pMessage[4] + ((pMessage[3] & 0x03) * 128), pMessage[5]); |
|
|
|
|
m_pSynthesizer->setVoiceDataElement(pMessage[4] + ((pMessage[3] & 0x03) * 128), pMessage[5],nTG); |
|
|
|
|
} |
|
|
|
|
else if(sysex_return >= 500 && sysex_return < 600) |
|
|
|
|
{ |
|
|
|
|
LOGDBG("SysEx send voice %u request",sysex_return-500); |
|
|
|
|
SendSystemExclusiveVoice(sysex_return-500, nCable, nTG); |
|
|
|
|
} |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void CMIDIDevice::SendSystemExclusiveVoice(uint8_t nVoice, const unsigned nCable, uint8_t nTG) |
|
|
|
|
{ |
|
|
|
|
uint8_t voicedump[163]; |
|
|
|
|
|
|
|
|
|
LOGDBG("Sending SysEx voice %u ",nVoice); |
|
|
|
|
|
|
|
|
|
// Get voice sysex dump from TG
|
|
|
|
|
m_pSynthesizer->getSysExVoiceDump(voicedump, nTG); |
|
|
|
|
|
|
|
|
|
if (m_DeviceName.compare (m_pConfig->GetMIDIThruIn ()) == 0) |
|
|
|
|
{ |
|
|
|
|
TDeviceMap::const_iterator Iterator; |
|
|
|
|
|
|
|
|
|
Iterator = s_DeviceMap.find (m_pConfig->GetMIDIThruOut ()); |
|
|
|
|
if (Iterator != s_DeviceMap.end ()) |
|
|
|
|
{ |
|
|
|
|
Iterator->second->Send (voicedump, sizeof(voicedump)*sizeof(uint8_t), nCable); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}
|
|
|
|
|