blob: 38abd4e15f0ce9f348c1ea927e2b7cc9188e8eb7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef SERIAL_MIDI_H
#define SERIAL_MIDI_H
#include <inttypes.h>
#include "midi.h"
//initialize serial midi and return the device pointer
MidiDevice* serial_midi_init(uint16_t clockScale, bool out, bool in);
#endif
|