Hi,
I try to get I2C working but I noticed the Busy Bit in Register I2CM_STAT keeps staying 1 regardless what I do. I see the value in the Debugger and also in a separate Variable in the code below.
In the Datasheet (at Page 449) is written that the reset value should be 0. Can you help me to reset this Bit?
Thanks in advance,
Max
uint32_t debug1;
int main() {
debug1 = HWREG(I2CM_STAT);
if(debug1) {
__no_operation();
}
}