We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3616dad commit 71b87bfCopy full SHA for 71b87bf
libraries/SoftwareSerial/src/SoftwareSerial.cpp
@@ -270,7 +270,7 @@ void SoftwareSerial::setTX(uint8_t tx)
270
{
271
// First write, then set output. If we do this the other way around,
272
// 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
+ // output high. Now, it is input with pullup for a short while, which
274
// is fine. With inverse logic, either order is fine.
275
digitalWrite(tx, _inverse_logic ? LOW : HIGH);
276
pinMode(tx, OUTPUT);
0 commit comments