X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/rsbs2/blobdiff_plain/f9d5c6e0b95e763fb9900e1e7cd5114bc452dfb9..67a9a9e866d0ff3c40dc2a4a5df32c6e39e9747f:/bmc/i2c.c diff --git a/bmc/i2c.c b/bmc/i2c.c index bf561d0..07d2e79 100644 --- a/bmc/i2c.c +++ b/bmc/i2c.c @@ -3,25 +3,36 @@ #include #include "i2c.h" #include "bmc.h" +#include "config.h" #include "ipmb.h" #define TWCR_ACK TWCR = (1< + * TWBR = (F_CPU/(2 * SCL)) - 8 + */ + TWBR = (F_CPU/(2*I2C_FREQ))-8; TWAR = BMC_ADDR & 0xfe; TWDR = 0x00; TWCR &= ~((1<= sizeof(i2c_databuf)) { + TWCR_RESET; + i2c_pos = 0x00; + break; + } i2c_databuf[i2c_pos] = TWDR; i2c_pos++; TWCR_ACK; @@ -102,6 +130,13 @@ ISR (TWI_vect, ISR_BLOCK) TWCR_RESET; break; + case TW_NO_INFO: +#ifdef DEBUG + printf("I2C: TW_NO_INFO received status 0x%2x\n", TW_STATUS); +#endif + TWCR |= (1<