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.
2020-01-08 01: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)) ;
2020-01-08 01: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)) ;