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.
Tool/software: TI-RTOS
Hi,
I am implementing a SPI slave receiver. The RTOS driver manages a SPI transaction consisting of a fixed number of data-frames.
In my situation I am receiving an unknown number of frames arriving at unknown times.
I am wondering if it is OK to set the transaction.count to 1 and loop. I have modified the spiloopback example to show what I mean.....
/* Initialize SPI handle with slave mode */ SPI_Params_init(&slaveSpiParams); slaveSpiParams.mode = SPI_SLAVE; slaveSpi = SPI_open(Board_SPI1, &slaveSpiParams); if (slaveSpi == NULL) { System_abort("Error initializing SPI\n"); } else { System_printf("SPI initialized\n"); } /* Initialize slave SPI transaction structure */ slaveTransaction.count = 1; slaveTransaction.txBuf = NULL; slaveTransaction.rxBuf = (Ptr)slaveRxBuffer; while(1) { /* Initiate SPI transfer */ transferOK = SPI_transfer(slaveSpi, &slaveTransaction); myRxBuffer[inPtr++] = slaveRxBuffer[0]; if(transferOK) { /* Print contents of slave receive buffer */ System_printf("Slave: %s\n", slaveRxBuffer); } else { System_printf("Unsuccessful slave SPI transfer"); } }
Will this be OK or is there a better way of approaching it?
Thanks,
Richard
Hi Richard,
The approach above will likely satisfy scenarios where bytes of data are transferred infrequently but will possibly have issues when transferring large amounts of data continuously. The reason is that each time you call SPI_transfer() the DMA is configured to perform the data transfer from memory to SPI TX & from SPI RX to memory; then the task is blocked until the transfer is completed. While this does not take a huge amount of time/cycles there is still the possibility that data might be missed between the end of a transfer & setting up the next.
Is there a protocol between master & slave? For example, if the master sends 1 byte which is the amount of data it will send next; the slave can then receive/parse it & prepare for the next, larger, transfer. Having some sort of protocol/handshaking would help alleviate the problem with large continuous transfers.
Let me know if this helps,
-- Emmanuel
Emmanuel,
May I memorialize your post as, "quite caring, nicely detailed - terrific!" You've gone (far) beyond simple opinion - have made the effort to "justify your direction" - which makes your guidance especially compelling.
You've identified the poster's "real needs" - which insures a better end result - and assists (others here) as well... Bravo!
Thank you for your "opinion" Richard. May I ask "How you justify such "strong" opinion?"
With the "demise of "LIKE" - there is (little) means left to identify and register appreciation for such, "special efforts."
Clearly Emmanuel's writing demanded such "recognition."
In closing - is the "Emptiness of your complaint" not SO WELL SIGNALED by your, "Happy Christmas" offering? (or is that "technical?")