Skip to content

Commit

Permalink
Fix SDA1/SCL1 pin typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MCUdude committed Mar 26, 2021
1 parent 043bc9e commit 0990937
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions avr/libraries/Wire1/src/utility/twi1.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ void twi_disable1(void)
TWCR1 &= ~(_BV(TWEN) | _BV(TWIE) | _BV(TWEA));

// deactivate internal pullups for twi.
digitalWrite(SDA, 0);
digitalWrite(SCL, 0);
digitalWrite(SDA1, 0);
digitalWrite(SCL1, 0);
}

/*
Expand Down

0 comments on commit 0990937

Please sign in to comment.