Skip to content

Commit

Permalink
Stream::send() landed in ESP8266 Arduino core, finish adoption here. …
Browse files Browse the repository at this point in the history
…Minor release.
  • Loading branch information
dok-net committed Mar 15, 2021
1 parent ee9af59 commit 7fdef9b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "EspSoftwareSerial",
"version": "6.11.7",
"version": "6.12.0",
"keywords": [
"serial", "io", "softwareserial"
],
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=EspSoftwareSerial
version=6.11.7
version=6.12.0
author=Dirk Kaar, Peter Lerup
maintainer=Dirk Kaar <dok@dok-net.net>
sentence=Implementation of the Arduino software serial for ESP8266/ESP32.
Expand Down
6 changes: 3 additions & 3 deletions src/SoftwareSerial.h
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ class SoftwareSerial : public Stream {
}
/// The read(buffer, size) functions are non-blocking, the same as readBytes but without timeout
int read(uint8_t* buffer, size_t size)
//#if defined(ESP8266)
// override
//#endif
#if defined(ESP8266)
override
#endif
;
/// The read(buffer, size) functions are non-blocking, the same as readBytes but without timeout
int read(char* buffer, size_t size) {
Expand Down

0 comments on commit 7fdef9b

Please sign in to comment.