Timer input capture with circular DMA. How do I temporarily stop the DMA and then resume?
I'm using an STM32F429. I have setup a timer to capture rising edges on CH1 and a DMA to store the captured values into a circular buffer.How can I temporarily stop the DMA from placing new values into the buffer while I'm reading values from the buf...