diff --git a/library.properties b/library.properties index 4350c92..ecea0cc 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=NeoSWSerial -version=3.0.3 +version=3.0.4 author=SlashDevin maintainer=SlashDevin sentence=An efficient replacement for SoftwareSerial at baud rates 9600, 19200 and 38400. diff --git a/src/NeoSWSerial.h b/src/NeoSWSerial.h index 0b56bdb..1e54499 100644 --- a/src/NeoSWSerial.h +++ b/src/NeoSWSerial.h @@ -79,6 +79,7 @@ class NeoSWSerial : public Stream virtual int available(); virtual int read(); virtual size_t write(uint8_t txChar); + using Stream::write; // make the base class overloads visible virtual int peek() { return 0; }; virtual void flush() {}; void end() { ignore(); }