We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f58077 commit 257bfd0Copy full SHA for 257bfd0
libraries/esp8266/examples/SerialStress/SerialStress.ino
@@ -72,8 +72,8 @@ void setup() {
72
73
// using HardwareSerial0 pins,
74
// so we can still log to the regular usbserial chips
75
- SoftwareSerial* ss = new SoftwareSerial;
76
- ss->begin(SSBAUD, 3, 1);
+ SoftwareSerial* ss = new SoftwareSerial(3, 1);
+ ss->begin(SSBAUD);
77
ss->enableIntTx(false);
78
logger = ss;
79
logger->println();
0 commit comments