Hi buddies
maybe missed something but is there a command line (e.g MERGER_On()) in C for enabling the merge function on the core when writing a custom application ? I would like to connect a keyboard to a core and that this core send all events from the kbd to the output.
if not i will use the example given by thorsten in the C programming examples section ,like this :
void MPROC_NotifyReceivedEvnt(
unsigned char evnt0, unsigned char evnt1, unsigned char evnt2) __wparam
{
MIOS_MIDI_TxBufferPut(evnt0);
MIOS_MIDI_TxBufferPut(evnt1);
MIOS_MIDI_TxBufferPut(evnt2);
}