2017-10-03 10:54 AM
MCU: STM32F765
Using FreeRtos
2017-11-06 03:44 PM
The callback is called under interrupt context, it is best to queue the data, and relight the transfer there, and manage the data from the queue in a worker task. The queuing should not cause a context switch.