mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-09 18:19:08 +00:00
Update i2c.c
This commit is contained in:
parent
bb413383ee
commit
d5f56e91e4
1 changed files with 0 additions and 2 deletions
|
@ -56,7 +56,6 @@ uint8_t i2c_master_start(uint8_t address) {
|
|||
if ( (TW_STATUS != TW_START) && (TW_STATUS != TW_REP_START))
|
||||
return 1;
|
||||
|
||||
// send device address
|
||||
TWDR = address;
|
||||
TWCR = (1<<TWINT) | (1<<TWEN);
|
||||
|
||||
|
@ -160,5 +159,4 @@ ISR(TWI_vect) {
|
|||
// Reset everything, so we are ready for the next TWI interrupt
|
||||
TWCR |= (1<<TWIE) | (1<<TWINT) | (ack<<TWEA) | (1<<TWEN);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue