Other Parts Discussed in Thread: C2000WARE
HELLO,
I am working with SPI of TMS320F28027 Launchpad.i have questions related to it.
1) what is FIFO mode of spi and why and where to use it. I am not getting any idea by reading document.
2)when i am only sending data to slave ( msp432 and tms320 acting as master without loop back mode) without FIFO mode and with out spi interrupt (using for loop) then data is sent is correct but when I am trying to get any data by sending dummy data I am not receiving any data .How to receive data data in master mode with does it always need interrupt to receive data, if not then how to check rxbuf is loaded with data, does it have any flag or bit to check to receive data.
3) when tsm320f28027 acting as a slave how to receive data without interrup mode.
4) when tms320 is master and sending data in 8 bit mode I am able to send data but while receiving when rxbuf shows correct data but when I am copying to variable rdata by defining it to uint8_t and uint16_t different. Suppose when my rxbuf data is 0xEE I am receiving it only 0x0E.