Skip to content

Commit 2e3e1d5

Browse files
dok-netd-a-v
authored andcommitted
EspSoftwareSerial release 5.2.1 (#6219)
* Track breaking API chance in EspSoftwareSerial. * Revert "Track breaking API chance in EspSoftwareSerial." This reverts commit 78aa3e8. * Track breaking API chance in EspSoftwareSerial. * Bug fix in EspSoftwareSerial * EspSoftwareSerial: improved memory fences * Refactoring upstream * EspSoftwareSerial fixed a high-bitrate error source, probably caused by end-bit detection without checking for same-level timestamps from the IRQ * EspSoftwareSerial examples updates * Fix to stop bit detection in EspSoftwareSerial * Latest bit timings fix in EspSoftwareSerial. * EspSoftwareSerial examples * EspSoftwareSerial latest throughput results in comments of loopback.ino * Lastest EspSoftwareSerial, dependent on a few as yet unmerged PRs, tho * Submodule EspSoftwareSerial release 5.2.0 with workaround for as yet missing attachInterruptArg in Arduino.h * EspSoftwareSerial release 5.2.0, includes workaround for missing attachInterruptArg in ESP8266 Arduino * EspSoftwareSerial: CI failed on examples - defines for Wemos board GPIOs.
1 parent 653f58e commit 2e3e1d5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

libraries/esp8266/examples/SerialStress/SerialStress.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ void setup() {
7272

7373
// using HardwareSerial0 pins,
7474
// so we can still log to the regular usbserial chips
75-
SoftwareSerial* ss = new SoftwareSerial(3, 1);
76-
ss->begin(SSBAUD);
75+
SoftwareSerial* ss = new SoftwareSerial;
76+
ss->begin(SSBAUD, 3, 1);
7777
ss->enableIntTx(false);
7878
logger = ss;
7979
logger->println();

0 commit comments

Comments
 (0)