From 71b87bf26bc7b485dc1c111603fd09327c1b6c53 Mon Sep 17 00:00:00 2001 From: Bradley Luke Totaro Date: Tue, 5 Apr 2016 15:10:46 -0400 Subject: [PATCH] Update SoftwareSerial.cpp --- libraries/SoftwareSerial/src/SoftwareSerial.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);