diff options
author | Bradley Luke Totaro <brad@gothamanalytics.net> | 2016-04-05 15:10:46 -0400 |
---|---|---|
committer | Bradley Luke Totaro <brad@gothamanalytics.net> | 2016-04-05 15:10:46 -0400 |
commit | 71b87bf26bc7b485dc1c111603fd09327c1b6c53 (patch) | |
tree | 83bd50e5fe9c5432f1bc5be916150431730b5d72 /libraries | |
parent | 3616dadb3ac7af6edcc8194916d66cf4445ebf9f (diff) |
Update SoftwareSerial.cpp
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/SoftwareSerial/src/SoftwareSerial.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/SoftwareSerial/src/SoftwareSerial.cpp b/libraries/SoftwareSerial/src/SoftwareSerial.cpp index 376762e..474fe4a 100644 --- a/libraries/SoftwareSerial/src/SoftwareSerial.cpp +++ b/libraries/SoftwareSerial/src/SoftwareSerial.cpp @@ -270,7 +270,7 @@ void SoftwareSerial::setTX(uint8_t tx) {
// First write, then set output. If we do this the other way around,
// the pin would be output low for a short while before switching to
- // 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
// is fine. With inverse logic, either order is fine.
digitalWrite(tx, _inverse_logic ? LOW : HIGH);
pinMode(tx, OUTPUT);
|