Skip to content

Releases: mcci-catena/SoftwareSerial

Release to Arduino Library

18 Jun 05:31
f4317c3
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.0.0...v3.0.0

First official MCCI version

21 Apr 12:11
Compare
Choose a tag to compare
  • 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 for UART -- the old SoftwareSerial::begin(long speed) maps to the new API.

  • Added SoftwareSerial::begin(unsigned long speed, uint16_t config). This is currently only for compatibility with UART; the config is not yet used.

  • Added SoftwareSerial::drainRead() to do what flush() used to do, in case you are not happy with the recommended while (mySerial.read() >= 0) /* spin */; work-around.

Latest Arduino.org release

21 Apr 11:46
Compare
Choose a tag to compare

This release contains the code from Arduino.org.