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.
Hi team,
Here's an issue from the customer may need your help:
Read EEPROM using TM4C129XNCZAD I2C9 as host. When host is initialized, the I2C Control/Status (I2CMCS) register is 0x60. The initialization procedure is as follows:
SysCtlPeripheralEnable(SYSCTL_PERIPH_I2C9); SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOE); GPIOPinConfigure(GPIO_PE6_I2C9SCL); GPIOPinConfigure(GPIO_PE7_I2C9SDA); GPIOPinTypeI2CSCL(GPIO_PORTE_BASE, GPIO_PIN_6); GPIOPinTypeI2C(GPIO_PORTE_BASE, GPIO_PIN_7); I2CMasterInitExpClk(I2C9_BASE, g_ui32SysClock, 0); I2CMasterEnable(I2C9_BASE);
Busy status after bus initialization prevents EEPROM reading.
Note: I2C bus SCL, SDA have received pull-up resistors (2.2K), the bus is pulled up with an oscilloscope measurement, but the scope is not able to not detect SCL and SDA outputs.
Could you help check this case? Thanks.
Best Regards,
Cherry
Hi Cherry,
Can you share the scope capture or preferably the logic analyzer capture?
Hi Charles,
Thanks for your support.
Can you share the scope capture or preferably the logic analyzer capture?
Now the scope is not capturing the waveform. Once the I2C is initialized, it's the busy state.
Thanks and regards,
Cherry
Note: I2C bus SCL, SDA have received pull-up resistors (2.2K), the bus is pulled up with an oscilloscope measurement, but the scope is not able to not detect SCL and SDA outputs.
On a TM4C129XNCZAD pin PE7 is locked by default for use as NMI.
To use PE7 for I2C the pin needs to be "unlocked" - see [FAQ] How to get locked GPIO pins on TM4C129 devices to work.
I.e. try following the method described in the FAQ to unlock PE7.
Hi Chester,
Thank you so much. I'm pretty sure that is the problem as the pin is locked. Needs to unlock before it can be used for I2C.