1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-13 13:01:55 +03:00

Track breaking API chance in EspSoftwareSerial.

This commit is contained in:
Dirk O. Kaar
2019-04-25 23:50:06 +02:00
parent 254302b98f
commit 78aa3e8432
2 changed files with 3 additions and 3 deletions

View File

@ -72,8 +72,8 @@ void setup() {
// using HardwareSerial0 pins,
// so we can still log to the regular usbserial chips
SoftwareSerial* ss = new SoftwareSerial(3, 1);
ss->begin(SSBAUD);
SoftwareSerial* ss = new SoftwareSerial;
ss->begin(SSBAUD, 3, 1);
ss->enableIntTx(false);
logger = ss;
logger->println();