-
Notifications
You must be signed in to change notification settings - Fork 258
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
ATMEGA4809 (Arduino Nano "Every" board) should use Serial1 not Serial #300
Comments
Thanks for reporting, the offending line is here: Could you try and find the definition for that board and report back here please? So I could update the automatic serial port selection. Edit: as per related issue #65, it could be Thanks! |
To be honest I'm not sure how to get the name. But |
Hi, I've had issues getting my Board to run and saw this issue. The Board name is indeed
(Also mentioned here) I couldn't find any specification for
|
Context
Please answer a few questions to help us understand your problem better and guide you to a solution:
Arduino Nano Every Board (ATMEGA4809)
2.0
Describe your project and what you expect to happen:
I was using an older third party Arduino Nano for development and at the end swapped in a newer ATMEGA4809 board (https://docs.arduino.cc/hardware/nano-every). After switching I wasn't getting any output. Turns out the newer Nano boards use Serial1 by default. I was able to fix this using
MIDI_CREATE_INSTANCE
instead ofMIDI_CREATE_DEFAULT_INSTANCE
but I think the library does switch between Serial and Serial1 automatically for other boards.Not really a bug, but I guess the library should take this new Nano Every board into account with
CREATE_DEFAULT_INSTANCE
The text was updated successfully, but these errors were encountered: