Hi
I am using TMDX470MF066HDK eval board and try to use SPI for I2C control. I just write a 2 word length in buff and send it out. But I always watched 128 bit length data and clock from SPI2 pins. My source code as below:
unsigned short SPI_data[2];
for (i = 0 ; i <2 ; i++ )
{
SPI_data[i]= 0xAA;
};
spiSetData ( spiREG3 , 0 , SPI_data );
spiTransfer( spiREG3 , 0);

the green part is the waveform of SIMO and the red part is clock.