Because of the holidays, TI E2E™ design support forum responses will be delayed from Dec. 25 through Jan. 2. Thank you for your patience.

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.

F28377S I2C pins?

Other Parts Discussed in Thread: TMS320F28377S, ENERGIA

Hello,

I'm attempting to set the F28377S Launchpad up as an I2C Master to be used for testing purposes with a F28377D as a slave. The example code (Example_2837xSI2C_eeprom.c) compiles but produces nothing on pins 32&33. I changed the GPIO mux functions from pins 32&33 to 73&74 as the datasheet seems to indicate is necessary:

// For this example, only init the pins for the SCI-A port.
// These functions are found in the F2837xS_Gpio.c file.
   GPIO_SetupPinMux(73, GPIO_MUX_CPU1, 1);
   GPIO_SetupPinMux(74, GPIO_MUX_CPU1, 1);

but I still see nothing on my O-scope on these pins. Just to be sure, I've also tried 42&43(the numbers indicated by the I2CA SCL/SDA lines on the "quick start guide") and 9&10 (the actual physical pin numbers on the board). Nothing seems to produce any output.

Am I missing something or is there an issue with the example code?