Greetings…
In my application I need to process system exclusive messages. Is there any example code that demonstrates how this is done?
Looking at the functions that MIOS provides it looks like there are two user functions that get called on input: USER_MIDI_NotifyRx and USER_MPROC_NotifyReceivedByte. I’m not sure of the difference between the two.
It would seem that I could take calls to one of these functions and watch for the start of a sysex message and then continue to queue bytes one call at a time until the end of the sysex and then process the entire queued message. This would be easier in my case than trying to process the message on the fly (plus it would put less code in the interrupt routines) Am I overlooking an easier solution?
Sorry for what may be naive questions but this is my first attempt at coding a custom app under MIOS.