Should an ISR version of an RTOS queue function be called within a callback?
Posted on September 08, 2015 at 00:11Within the callback: HAL_UART_RxCpltCallback() I need to insert the received character into an RTOS queue. To do this I need to know if I should use the function: xQueueSendToBack() or xQueueSendToBackFromISR() I...