Are there any examples of a UART transmit with DMA for a STM32MP1?
In a normal M4 like the STM32F466RE the MX program does most of the setup for transmitting the UART with DMA when you configure.
However there is NO DMA option when setting up the UART for the STM32MP157.
I dump internal information to a UART so I can see what is going wrong. The UART is operating at 2Mb (2,000,000 baud or bits per second) While that is good at getting the data out, it is too much of a drain on the processor going in and out of interrupts that fast.
That is what DMA is for. It operates in the background and is not noticed by my processor.
The DMA is different with the STM32MP1, some help with the configuring it with a UART for transmit would be helpful.
