aboutsummaryrefslogtreecommitdiff
path: root/libraries
diff options
context:
space:
mode:
authorBrent Wilkins <brent@SparkFun.com>2016-02-01 12:52:29 -0700
committerBrent Wilkins <brent@SparkFun.com>2016-02-01 12:52:29 -0700
commitb3caf62124fbd9bb0045775ff032eb62ec24becb (patch)
tree7db6927367b21b4201d6b83d4fd89f1f753d8283 /libraries
parent258172f6ab137c0c75fe6deb541d6705cfe6cdfb (diff)
Fixed typo
Diffstat (limited to 'libraries')
-rw-r--r--libraries/Wire/utility/twi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/Wire/utility/twi.c b/libraries/Wire/utility/twi.c
index 2af0597..7efcc5a 100644
--- a/libraries/Wire/utility/twi.c
+++ b/libraries/Wire/utility/twi.c
@@ -165,7 +165,7 @@ uint8_t twi_readFrom(uint8_t address, uint8_t* data, uint8_t length, uint8_t sen
// We need to remove ourselves from the repeated start state before we enable interrupts,
// since the ISR is ASYNC, and we could get confused if we hit the ISR before cleaning
// up. Also, don't enable the START interrupt. There may be one pending from the
- // repeated start that we sent outselves, and that would really confuse things.
+ // repeated start that we sent ourselves, and that would really confuse things.
twi_inRepStart = false; // remember, we're dealing with an ASYNC ISR
do {
TWDR = twi_slarw;