Skip to content

Commit 1e461ce

Browse files
author
Bradley Luke Totaro
committed
Update SoftwareSerial.cpp
1 parent c2c3f46 commit 1e461ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: hardware/arduino/avr/libraries/SoftwareSerial/src/SoftwareSerial.cpp

+1-1
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)