Are there any examples for using SPI with the TMS570LS20216? It seems the functions that exist for the TMS570LS04 don's exist for the former.
Does one call the SPI functions in this order?
void spiSetData(spiBASE_t *spi, uint32 group, uint16 * data);
void spiTransfer(spiBASE_t *spi, uint32 group);
while(!spiIsTransferComplete(spiBASE_t *spi, uint32 group)) continue;
uint32 spiGetData(spiBASE_t *spi, uint32 group, uint16 * data);