Skip to content

Commit

Permalink
Bump minor version due to small change in yield behavior.
Browse files Browse the repository at this point in the history
  • Loading branch information
dok-net committed Sep 15, 2020
1 parent 67ce592 commit 4c08ee8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
8 changes: 5 additions & 3 deletions examples/swsertest/swsertest.ino
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,15 @@
#define BAUD_RATE 57600
#endif

// Reminder: the buffer size optimizations here, in particular the isrBufSize that only accommodates
// a single 8N1 word, are on the basis that any char written to the loopback SoftwareSerial adapter gets read
// before another write is performed. Block writes with a size greater than 1 would usually fail.
SoftwareSerial swSer;

void setup() {
Serial.begin(115200);
// Important: the buffer size optimizations here, in particular the isrBufSize (11) that is only sufficiently
// large to hold a single 8N1 word, are on the basis that any char written to the loopback SoftwareSerial
// adapter gets read before another write is performed.
// Block writes with a size greater than 1 would usually fail. Do not copy this into your own project without
// reading the documentation.
swSer.begin(BAUD_RATE, SWSERIAL_8N1, D5, D6, false, 95, 11);

Serial.println(PSTR("\nSoftware serial test started"));
Expand Down
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.8.5",
"version": "6.9.0",
"keywords": [
"serial", "io", "softwareserial"
],
Expand Down
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name=EspSoftwareSerial
version=6.8.5
author=Peter Lerup, Dirk Kaar
version=6.9.0
author=Dirk Kaar, Peter Lerup
maintainer=Dirk Kaar <[email protected]>
sentence=Implementation of the Arduino software serial for ESP8266/ESP32.
paragraph=
Expand Down

0 comments on commit 4c08ee8

Please sign in to comment.