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:
Submodule libraries/SoftwareSerial updated: d4ae180f33...88d582b81e
@ -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();
|
||||
|
Reference in New Issue
Block a user