We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf2eac2 commit af2ea57Copy full SHA for af2ea57
library.properties
@@ -1,5 +1,5 @@
1
name=NeoSWSerial
2
-version=3.0.3
+version=3.0.4
3
author=SlashDevin
4
maintainer=SlashDevin
5
sentence=An efficient replacement for SoftwareSerial at baud rates 9600, 19200 and 38400.
src/NeoSWSerial.h
@@ -79,6 +79,7 @@ class NeoSWSerial : public Stream
79
virtual int available();
80
virtual int read();
81
virtual size_t write(uint8_t txChar);
82
+ using Stream::write; // make the base class overloads visible
83
virtual int peek() { return 0; };
84
virtual void flush() {};
85
void end() { ignore(); }
0 commit comments