This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

C2000 I2C issue // Bus busy

Hello, I'm am using the code provided by TI in order to send bytes to the eeprom with I2C : Example_2833xI2c_eeprom

The issue is that the condition :

 // Check if bus busy
   if (I2caRegs.I2CSTR.bit.BB == 1)
   {
      return I2C_BUS_BUSY_ERROR;
   }

 

is never Ok...

I wonder if there is anything I can do to solve this problem...

Thank you for your answer.