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.