[SOLVED] FreeRTOS mutex issue in ISR with stm32 HAL and UART DMA TX
I tried to make a formatted print function, which would not be interrupted by another call to HAL_UART_Transmit_DMA(). I have two threads which freely calls HAL_UART_Transmit_DMA(). If it's not synchronized, the message would be mixed or lost.So I ad...