-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to change the maximum sysex message length? #9
Comments
I think I might have a solution and will submit a pull request :) |
Check out https://github.com/FortySevenEffects/arduino_midi_library/wiki/Using-custom-Settings for custom settings (This USB transport layer does not touch the SysEx length, this is set in the underlying lib) |
Thanks for the response. I think it just wasn't immediately obvious to me how to handle it (due to my lack of understanding of C++ templates). I actually created a macro that is similar to the |
Hi @levicole - thanks, looks good. Would you mind adding an example using the custom settings based on the SysExReceive example? |
@lathoub yes! I should have some time to do this today. Work was fairly busy this week! |
I 've been experimenting with this library along with the FortySevenEffects library. I was attempting to use an Arduino as a USB -> DIN midi interface so I could send DX7 patches from Dexed to a VolcaFM. It seems as if the
SysexMaxSize
is not customizable in the same way that it is for say serial midi (snippet below).I'm OK with C, but when it comes to C++ templates and macros, I get completely lost. It seems like it might be possible and my limited knowledge might be keeping me from seeing it.
Custom settings subclass and instantiation for serial midi:
The text was updated successfully, but these errors were encountered: