Update i2c.c

master
ishtob 2017-03-22 15:49:21 -04:00 committed by GitHub
parent be0cfbb97e
commit 092416325b
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ void i2c_master_init(void) {
// returns: 0 => success
// 1 => error
uint8_t i2c_master_start(uint8_t address) {
TWCR = (1<<TWINT)| (1<<TWEN) | (1<<TWSTA) ;
TWCR = (1<<TWINT) | (1<<TWEN) | (1<<TWSTA);
i2c_delay();