Skip to content

Commit

Permalink
v3.0.4
Browse files Browse the repository at this point in the history
*  make overloaded `write` methods visible in derived NeoSWSerial
  • Loading branch information
SlashDevin committed Jun 13, 2017
1 parent bf2eac2 commit af2ea57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
1 change: 1 addition & 0 deletions src/NeoSWSerial.h
Original file line number Diff line number Diff line change
Expand Up @@ -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(); }
Expand Down

0 comments on commit af2ea57

Please sign in to comment.