1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-21 10:26:06 +03:00

Update EspSoftwareSerial to release 5.0.0. (#5965)

* Update EspSoftwareSerial to release 5.0.0.

(Includes half-duplex patch for SerialStress.ino)

* Updated EspSoftwareSerial to allow Platformio builds that lack defaults for RX/TX defines.
This commit is contained in:
Dirk O. Kaar 2019-04-09 22:14:02 +02:00 committed by Develo
parent 77451d6ec9
commit e1c8bf8df2
2 changed files with 2 additions and 1 deletions

@ -1 +1 @@
Subproject commit 23ae000cb2cf4d5823a2744f6b8ae831575ff135 Subproject commit 457849f4787b33927ca211b1353420311c21e5a7

View File

@ -74,6 +74,7 @@ void setup() {
// so we can still log to the regular usbserial chips // so we can still log to the regular usbserial chips
SoftwareSerial* ss = new SoftwareSerial(3, 1); SoftwareSerial* ss = new SoftwareSerial(3, 1);
ss->begin(SSBAUD); ss->begin(SSBAUD);
ss->enableIntTx(false);
logger = ss; logger = ss;
logger->println(); logger->println();
logger->printf("\n\nOn Software Serial for logging\n"); logger->printf("\n\nOn Software Serial for logging\n");