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.

One question of TMDX470MF066HDK SPI2 data transfer

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.