STM32 DMA & UART
Hello im working on a project where im modifying data on STM32 and transmiting it via UART on my other hardware(ESP32).
Im having troubles, my best guess is at sending data thought UART. Because of the delays in my code I've implemented DMA which would resolve that issue. The trouble im facing is, when i let the code run without breakpoints the data received looks like that:

It looks like the buffer im transmiting is getting sent over multiple times until its completed? That in fact delays my whole process, as you can see it takes 0.6s for 1 data to be transmitted. However if I manually break and start code the data is transmited completely in one step.
I want to know, if that has been issue resolved in the past, or is it possible that im receiving this data in the wrong way?
