How to disable DMA/ADC interrupt STM32F1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-04-04 11:47 AM
Posted on April 04, 2013 at 20:47The original post was too long to process during our migration. Please click on the attachment to read the original post.
This discussion is locked. Please start a new topic to ask your question.
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-04-04 12:02 PM
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..
Up vote any posts that you find helpful, it shows what's working..
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2013-04-04 12:37 PM
Posted on April 04, 2013 at 21:37
DMA_Mode_Circular -> DMA_Mode_Normal -> it works!
Thank you very much.