I see this mentioned in most of the apps as sort of a “preset” table for incoming MIDI (guessing), but they all seem to have their own tables for that under different names.
Does a CONFIG_MIDI_IN table actually exist somewhere?
Thanks,
George
I see this mentioned in most of the apps as sort of a “preset” table for incoming MIDI (guessing), but they all seem to have their own tables for that under different names.
Does a CONFIG_MIDI_IN table actually exist somewhere?
Thanks,
George
Yes, it’s located in mios_tables.inc, the name is “MIOS_MPROC_EVENT_TABLE”, and on matches the USER_MPROC_NotifyFoundEvent function will be called.
I must clearly say, that it was a bad idea to add such a feature to MIOS, as most applications need an individual MIDI handling with different data structures. It’s also not possible to realize, that a Note Off event will turn into a Note On with velocity=0 w/o duplicating table entries.
On the other hand: this is the fastest parser you will find especially for CC’s
Best Regards, Thorsten.
Thanks TK!
Didn’t realize the name would be different (I had been searching everything for an exact match).
George