Skip to content

Commit 4c08ee8

Browse files
committed
Bump minor version due to small change in yield behavior.
1 parent 67ce592 commit 4c08ee8

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

examples/swsertest/swsertest.ino

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,15 @@
2626
#define BAUD_RATE 57600
2727
#endif
2828

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

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

3840
Serial.println(PSTR("\nSoftware serial test started"));

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "EspSoftwareSerial",
3-
"version": "6.8.5",
3+
"version": "6.9.0",
44
"keywords": [
55
"serial", "io", "softwareserial"
66
],

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name=EspSoftwareSerial
2-
version=6.8.5
3-
author=Peter Lerup, Dirk Kaar
2+
version=6.9.0
3+
author=Dirk Kaar, Peter Lerup
44
maintainer=Dirk Kaar <[email protected]>
55
sentence=Implementation of the Arduino software serial for ESP8266/ESP32.
66
paragraph=

0 commit comments

Comments
 (0)