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 2190f63 commit 1ceceddCopy full SHA for 1cecedd
hardware/msp430/libraries/SoftwareSerial/SoftwareSerial.cpp
@@ -266,16 +266,11 @@ void SoftwareSerial::begin(long speed)
266
{
267
attachInterrupt(_receivePin, SoftwareSerial::handle_interrupt, FALLING);
268
269
- Serial.println("pre delay");
270
- Serial.print("_tx_delay: ");
271
- Serial.println(_tx_delay);
272
tunedDelay(_tx_delay); // if we were low this establishes the end
273
}
274
- Serial.println("post stopbit");
275
276
277
listen();
278
- Serial.println("post listen");
279
280
281
void SoftwareSerial::end()
0 commit comments