I2C: fixed cr/lf mess

This commit is contained in:
Andrew Tridgell 2012-03-10 14:27:30 +11:00
parent 5203df2cf8
commit ea0fb311af
2 changed files with 680 additions and 681 deletions

View File

@ -557,11 +557,10 @@ SIGNAL(TWI_vect)
case 0x78:
case 0xB0:
TWCR = 0; //releases SDA and SCL lines to high impedance
TWCR = _BV(TWEN) | _BV(TWIE) | _BV(TWEA); //reinitialize TWI
TWCR = _BV(TWEN) | _BV(TWIE) | _BV(TWEA); //reinitialize TWI
break;
}
}
I2C I2c = I2C();