Other Parts Discussed in Thread: HALCOGEN,
Hi
1. I would like to use interrupt mode for the i2c bus. I activate the interrupt using halcogen. See img below. Does it mean that I can't use polling of those bits? Would it work if I use polling? There are so many supplied routines by Halcogen that uses polling'
2. I would like to detect the functioning of my i2c bus and my i2c devices before I start to call i2cSendByte(i2c, cmd) or i2cReceiveByte(i2c). How to detect it? The reason is because I find that once I call any of the i2c send or receive routines, if the bus is non functioning, the software will hang in the polling of I2C_RX_INT and I2C_TX_INT. Bad pcbs and devices are common but software should not hang polling.
eg
while ((i2c->STR & (uint32)I2C_RX_INT) == 0U)
{
} /* Wait */
3. Please help to check following code. I want to use it to check if it can trigger an interrupt. Alas because it only send the i2c address and no data, there is no interrupt generated. To make matters worse, there is no stop bit generated. The routine hangs in the polling of stop bit. Thank you for your support.