-
-
Notifications
You must be signed in to change notification settings - Fork 730
Fixed software serial library inspired by .org #397
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
base: master
Are you sure you want to change the base?
Conversation
* RX is digital pin 10 (connect to TX of other device) | ||
* TX is digital pin 11 (connect to RX of other device) | ||
|
||
Note: |
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.
I would suggest removing the comments about the allowed pins on the AVR boards on lines 11-19, since it's not relevant here.
libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino
Outdated
Show resolved
Hide resolved
* First serial device's TX attached to digital pin 10(RX), RX to pin 11(TX) | ||
* Second serial device's TX attached to digital pin 8(RX), RX to pin 9(TX) | ||
|
||
Note: |
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.
I would suggest removing the comments about the allowed pins on the AVR boards on lines 19-27, since it's not relevant here.
libraries/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino
Outdated
Show resolved
Hide resolved
|
||
|
||
|
||
|
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.
|
||
|
||
|
||
|
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.
…reSerialExample.ino Co-Authored-By: agdl <a.guadalupi@arduino.cc>
…e.ino Co-Authored-By: agdl <a.guadalupi@arduino.cc>
…e.ino Co-Authored-By: agdl <a.guadalupi@arduino.cc>
Co-Authored-By: agdl <a.guadalupi@arduino.cc>
…e.ino Co-Authored-By: agdl <a.guadalupi@arduino.cc>
Co-Authored-By: agdl <a.guadalupi@arduino.cc>
|
Hi guys, I fixed the Software Serial library for SAMD boards .org guys made here
https://github.com/arduino-org/Arduino/tree/master/hardware/arduino/samd/libraries/SoftwareSerial
It works fine at 9600 with different boards.
Feedback and improvements will be very welcome :)