Continuous DMA from UART
Hello,
This is for the STM32H7, but may be applicable to other STM32 chips.
Is there a way to do a continuous DMA stream from a UART without requiring an expected size?
I would like to be able to set up a receive buffer with DMA in circular mode, and just say "give me infinite data" and have it continuously write data to the circular buffer. I'll handle the reading and parsing on my own as the data is written.
Is this possible to configure the DMA to do?
Thank you.