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.

TI RTOS

Question about preemptive scheduling in TI RTOS. Consider the task executing the code :

#include <SPI.h>

...

while(1) {

 SPI_transfer(...) // blocking version could take a very long time in CPU ticks terms

}

will it be any difference in rescheduling this thread depending on whether SPI_transfer is blocking or non-blocking?