2015-09-07 03:11 PM
Within 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 know xQueueSendToBackFromISR() should be called within an ISR. What I am not sure about is if it should still be used within a function that is called from an ISR.