cancel
Showing results for 
Search instead for 
Did you mean: 

How to disable DMA/ADC interrupt STM32F1

jandejsek
Associate
Posted on April 04, 2013 at 20:47

The original post was too long to process during our migration. Please click on the attachment to read the original post.
2 REPLIES 2
Posted on April 04, 2013 at 21:02

DMA_InitStructure.DMA_Mode = DMA_Mode_Circular; // << Consider Normal

 DMA_ITConfig(DMA1_Channel1, DMA_IT_HT | DMA_IT_TC | DMA_IT_TE, ENABLE); // << Consider only enabling the ONE you service, ie TC
Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
jandejsek
Associate
Posted on April 04, 2013 at 21:37

DMA_Mode_Circular -> DMA_Mode_Normal -> it works!

Thank you very much.