Skip to content

Commit af2ea57

Browse files
committed
v3.0.4
* make overloaded `write` methods visible in derived NeoSWSerial
1 parent bf2eac2 commit af2ea57

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=NeoSWSerial
2-
version=3.0.3
2+
version=3.0.4
33
author=SlashDevin
44
maintainer=SlashDevin
55
sentence=An efficient replacement for SoftwareSerial at baud rates 9600, 19200 and 38400.

Diff for: src/NeoSWSerial.h

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ class NeoSWSerial : public Stream
7979
virtual int available();
8080
virtual int read();
8181
virtual size_t write(uint8_t txChar);
82+
using Stream::write; // make the base class overloads visible
8283
virtual int peek() { return 0; };
8384
virtual void flush() {};
8485
void end() { ignore(); }

0 commit comments

Comments
 (0)