LL_DMA_IsActiveFlag complement in HAL
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-01-08 12:36 PM
hello,
How can I get the flags from the DMA with HAL drivers. Like the LL comands e.g. LL_DMA_IsActiveFlag_HT5 for the half transfer flag of stream5.
lg erik
Solved! Go to Solution.
Labels:
- Labels:
-
DMA
-
STM32Cube MCU Packages
This discussion is locked. Please start a new topic to ask your question.
1 ACCEPTED SOLUTION
Accepted Solutions
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-01-08 1:18 PM
I get the solution by my self.
For anyone how want to do the same thing: You can use this
while(0 == (DMA1->HISR ,DMA_HISR_HTIF5)) ;
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-01-08 1:18 PM
I get the solution by my self.
For anyone how want to do the same thing: You can use this
while(0 == (DMA1->HISR ,DMA_HISR_HTIF5)) ;
