-
|
Hello there, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
The MIDI library can be used on AVR processors without the Arduino core. I have some examples using a hardware abstraction layer based on C++ templates ( The general idea is to use a custom transport for the MIDI Library, that maps to your RX/TX buffers, themselves being connected to the UART via interrupt handlers. |
Beta Was this translation helpful? Give feedback.
The MIDI library can be used on AVR processors without the Arduino core.
I have some examples using a hardware abstraction layer based on C++ templates (
FortySevenEffects/cake) atFortySevenEffects/monosynth. It might need a little digging to see how it works.The general idea is to use a custom transport for the MIDI Library, that maps to your RX/TX buffers, themselves being connected to the UART via interrupt handlers.