Releases: mcci-catena/SoftwareSerial
Releases · mcci-catena/SoftwareSerial
Release to Arduino Library
What's Changed
- Fix #1: remove overloaded 'begin(int)' that is ambiguous by @dhineshkumarmcci in #2
- update library properties to get the library in Arduino's library manager by @dhineshkumarmcci in #5
New Contributors
- @dhineshkumarmcci made their first contribution in #2
Full Changelog: v2.0.0...v3.0.0
First official MCCI version
-
Added fix for issue 234.
-
SoftwareSerial::flush()
no longer empties the RX queue. Since there is no TX queue with this library, this API does nothing. -
SoftwareSerial::begin(unsigned long speed)
matches modern APIs forUART
-- the oldSoftwareSerial::begin(long speed)
maps to the new API. -
Added
SoftwareSerial::begin(unsigned long speed, uint16_t config)
. This is currently only for compatibility withUART
; the config is not yet used. -
Added
SoftwareSerial::drainRead()
to do what flush() used to do, in case you are not happy with the recommendedwhile (mySerial.read() >= 0) /* spin */;
work-around.
Latest Arduino.org release
This release contains the code from Arduino.org.