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,
I'm working with a system thas has a 28335 as a SPI master and a 28035 as SPI slave
I can't get more than the first data word sent from the slave properly.
My problem is best explained by the code fragment below, where the test of SPIFFTX.bit.TXFFST is pointless because it's always 4 when looking at it in the debugger.
I have the same construction in the 28335, where it works. The SPI blocks are set up the same, only the master/slave part is different and the 28335 uses interrupts while the 28035 does not.
Can anyone please explain why the Transmit FIFO status does not update when data is written to it?
//Pär
/* Load transmit FIFO with first data */
uiDataBlock = uiSendLength < SPI_FIFO_SIZE ? uiSendLength : SPI_FIFO_SIZE;
while( (SpibRegs.SPIFFTX.bit.TXFFST < SPI_FIFO_SIZE) && uiDataBlock )
{
if( uiSendLength )
{
SpibRegs.SPITXBUF = *puiSendFrame++;
uiSendLength--;
}
else
{
SpibRegs.SPITXBUF = 0;
}
uiDataBlock--;
}
The reason was that I thought the FIFO length was 16X16 for the 28035 as it is for the 28335, but it's 16X4.
Adjusting SPI_FIFO_SIZE to 4 solved the problem.
/Pär