How to swap DMA/DAC buffer only when a circular dma/dac has completed - STM32H7A/B
Edit: I've pretty much solved my problem. The issue of course was that I was setting the Complete flag in the first cycle. By changing: if(DAC_Complete){ swap_buffer(); DAC_Complete=0; }to:DAC_Complete=0; while(DAC_Complete){ swap_buffer(); }Things a...