Skip to content

Commit 992a81f

Browse files
committed
fix: missing argument in setupTXPin()
1 parent 6e542a5 commit 992a81f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: libraries/SoftwareSerial/src/SoftwareSerial.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ int SoftwareSerial::available()
439439
size_t SoftwareSerial::write(uint8_t b)
440440
{
441441
if (_singleWirePin && isListening())
442-
setupTXPin();
442+
setupTXPin(_singleWirePin);
443443

444444
if (_tx_delay == 0) {
445445
setWriteError();

0 commit comments

Comments
 (0)