Skip to content

Commit 71b87bf

Browse files
author
Bradley Luke Totaro
committed
Update SoftwareSerial.cpp
1 parent 3616dad commit 71b87bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/SoftwareSerial/src/SoftwareSerial.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ void SoftwareSerial::setTX(uint8_t tx)
270270
{
271271
// First write, then set output. If we do this the other way around,
272272
// the pin would be output low for a short while before switching to
273-
// output hihg. Now, it is input with pullup for a short while, which
273+
// output high. Now, it is input with pullup for a short while, which
274274
// is fine. With inverse logic, either order is fine.
275275
digitalWrite(tx, _inverse_logic ? LOW : HIGH);
276276
pinMode(tx, OUTPUT);

0 commit comments

Comments
 (0)