-
-
Notifications
You must be signed in to change notification settings - Fork 7k
Added SERIAL metadata in variant files. #1669
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
Conversation
…eedback with complex uploads
Conflicts: app/src/cc/arduino/packages/uploaders/SerialUploader.java app/src/processing/app/Editor.java app/src/processing/app/Sketch.java app/src/processing/app/debug/Uploader.java
…tgus/Arduino into projectgus-ide-1.5.x-thirdpartyboardprofiles Conflicts: app/src/processing/app/debug/BasicUploader.java
…rty in platform.txt
…flicting with files in IDE install location
… see: arduino#223 It now also parses PID and VID values with text afterwards properly
Can now detect devices with serial number in the port number on OSX
Added VID and PID for older Arduino Unos
…PrePreprocess.strip. Fixes arduino#817
…nt result. Updating test
Conflicts: libraries/Ethernet/examples/XivelyClient/XivelyClient.ino libraries/Ethernet/examples/XivelyClientString/XivelyClientString.ino libraries/GSM/examples/GSMXivelyClient/GSMXivelyClient.ino libraries/GSM/examples/GSMXivelyClientString/GSMXivelyClientString.ino libraries/Servo/examples/Knob/Knob.ino libraries/Servo/examples/Sweep/Sweep.ino libraries/WiFi/examples/WiFiXivelyClient/WiFiXivelyClient.ino libraries/WiFi/examples/WiFiXivelyClientString/WiFiXivelyClientString.ino
This pullrequest contains multiple commits that look related an partially identical even. The commit messages don't provide any hints as to how they are different. Perhaps you should use rebase to turn this into one single commit and drop the merge commit from this request? |
Right, I've changed the latest commit to remove the LED_BUILTIN (I'll do it in another upstream commit) The two "similar" commits are made this way so I can also update the master branch with a single pull request:
once merged I can fast forward master to the first commit. |
// SERIAL_PORT_HARDWARE_OPEN Hardware serial ports which are open for use. Their RX & TX | ||
// pins are NOT connected to anything by default. | ||
#define SERIAL_PORT_HARDWARE Serial | ||
#define SERIAL_PORT_HARDWARE_OPEN Serial1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be just Serial
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes! fixed.
thanks!
Ah, that explains the separation. Once merged I guess the structure would become more clear. Thanks for explaining. |
As discussed on the developers list.
Still missing the "Arduino Due (Native port)" case, I should figure out a good way to detect it.