X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/rsbs2/blobdiff_plain/f9d5c6e0b95e763fb9900e1e7cd5114bc452dfb9..e641fce6dede45cea9a98812d06ab6e8f0355c70:/bmc/i2c.c diff --git a/bmc/i2c.c b/bmc/i2c.c index bf561d0..92c00cc 100644 --- a/bmc/i2c.c +++ b/bmc/i2c.c @@ -9,7 +9,7 @@ #define TWCR_NACK TWCR = (1<= sizeof(i2c_databuf)) { + TWCR_RESET; + i2c_pos = 0x00; + break; + } i2c_databuf[i2c_pos] = TWDR; i2c_pos++; TWCR_ACK; @@ -104,7 +113,7 @@ ISR (TWI_vect, ISR_BLOCK) default: #ifdef DEBUG - printf("I2C: Unimplemented status 0x%02x\n", TW_STATUS); + printf("I2C: Unimplemented status 0x%02x\n", (TW_STATUS & 0xf8)); #endif TWCR_RESET; break;