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.
it is getting in void i2cSendByte(i2cBASE_t *i2c, uint8 byte) while ((i2c->STR & (uint32)I2C_TX_INT) == 0U) { } /* Wait */ even with and without interrupt selected.
PINMUX i2c checked and unchecked also.
External 10K Pullup resisitors are connected.
Tried 100Khz and 400kHz i2c baud rate still not working.
If anybody has working code kindly share it.
Hello Murali,
Murali Prasad said:1)I tried with scope we are not getting signal on both SDA and SCL lines.
2)I tried with loopback it is working.
What type of loopback did you use? digital or analog? In either case, the fact that the code functions in loopback points to an issue with the Hardware. i.e., something is driving the signals other than the MCU. If Hercules is the Master, it should have control of SCL at a minimum so this signal should be clocking. If these signals are driven low always, there is something driving them that way (try disconnecting the external device and see what happens to SCL).
the other points have varying levels of signifigance to the issue you are seeing.
Murali Prasad said:3)I have tried with lower as well as higher baudrate.
The external device should define which baud rate to use. However, given you aren't getting any SCL output at all, baud rate selection is not relevant to your problem at the moment.
Murali Prasad said:4) only one device on I2C network.
5) We are operating on hercules MCU is master and TMP112 sensor is slave.
You need to understand what impact the slave device, TMP112, is having on your signal lines. Is it driving them low continuously? Is there a problem with the hookup of the TMP112? What are it's pull requirements?
Murali Prasad said:6) PINMUX I2C peripheral checked and unchecked mode is also tried. 10K Pullup resistor is connected to SDA and SCL lines.
If you are using the I2C peripheral, you need to make sure the appropriate function is brought to the pin and there are no conflicts. Checking the I2C peripheral in the list at the top of the configuration page is the main step but you should confirm that the I2C SCL and SDA lines are checked as well. Also, if you are using a Launchpad, please double check that the specific pins you are using (as noted in the pinmux table) are the same ones that apply where you have connected the temp sensor on the Launchpad.
Murali Prasad said:7) With i2c interrupt and polling method is also tried still getting hang in below mentioned part of code.
Since you have stated the SW is working in loopback mode, I would be doubtful that there are specific issues in your base I2C code and given that you do not see any output on the SDA or SCL lines, also leads me to believe this is either a pin mux configuration issue or a HW connection issue.