You're right on that! I just ran into this with a STM32F401RE using STM32CubeIDE 1.0.1. It's not fixed yet! :( In my case, I had in the linker scripts:/* Highest address of the user mode stack */_estack = 0x20017fff; /* end of "RAM" Ram type memory...
Posted on January 20, 2016 at 15:50I found that HAL_UART_TxCpltCallback is not invoked using DMA transmit unless your DMA channel is configured in circular mode. In normal mode, you just get the TC (Transmit Complete) bit set in the USART ISR. You...