Added fix for ak47.
This commit is contained in:
parent
2f828fe2bc
commit
7941c69383
|
|
@ -60,7 +60,11 @@ template<class SerialPort>
|
||||||
void MidiInterface<SerialPort>::begin(Channel inChannel)
|
void MidiInterface<SerialPort>::begin(Channel inChannel)
|
||||||
{
|
{
|
||||||
// Initialise the Serial port
|
// Initialise the Serial port
|
||||||
|
#if defined(ARDUINO)
|
||||||
mSerial.begin(MIDI_BAUDRATE);
|
mSerial.begin(MIDI_BAUDRATE);
|
||||||
|
#elif defined(FSE_AVR)
|
||||||
|
mSerial. template open<MIDI_BAUDRATE>();
|
||||||
|
#endif
|
||||||
|
|
||||||
#if MIDI_BUILD_OUTPUT && MIDI_USE_RUNNING_STATUS
|
#if MIDI_BUILD_OUTPUT && MIDI_USE_RUNNING_STATUS
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue