Hello!
I'm sequencing my Sammich SID with my MPC, processing the Sammich in Axo and I found some strange behaviour when sending the MIDI through Axoloti.
I used the MIDI out script supplied in this topic: https://sebiik.github.io/community.axoloti.com.backup/t/axoloti-as-a-midi-usb-host/290 and modified it accordingly to only transmit the necessary stuff to me:
if (dev == MIDI_DEVICE_DIN)
{
uint8_t status_type = status & 0xF0;
if ((status_type == MIDI_NOTE_ON) || (status_type == MIDI_PITCH_BEND))
MidiSend3(MIDI_DEVICE_DIN,2,status,data1,data2);
}
This works fine, but it seems to override modulation parameters in the Sammich. When plugging the MPC directly into the Sammich, the modulation behaves correctly.
This is no major thing as I can do a lot more interesting filtering in the Axoloti, but curious nonetheless!
Can anyone shed a light please?