Open dimitre opened 5 years ago
It seems to be working on latest master But I have this issue if I install via Arduino Libraries
Is this expected? I have the same on mega1280. Same for master and arduino installed versions. My MIDI device which is connected via TX>1 detects random nonsense commands.
... ok using Serial1 and TX1 separates the output but the commands detected are still erratic
//Arduno Mega + Hairless Midi = 19200;
// Mega: Serial1 = TX1
struct CustomBaudRate : public midi::DefaultSettings{
static const long BaudRate = 19200;
};
MIDI_CREATE_CUSTOM_INSTANCE(HardwareSerial, Serial1, MIDI, CustomBaudRate);
Hello, I've been using this library with Teensy 3.2. I'm using the default TX pin and it always worked ok with MIDI.begin() in the latest version now it is sending all MIDI information to the serial port instead of TX pin. not sure if it is this library or something else. Happening both on Arduino 1.8.9 and 1.8.10 minimal code to reproduce
Thank you