cancel
Showing results for 
Search instead for 
Did you mean: 

LL_DMA_IsActiveFlag complement in HAL

GIkar
Associate III

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

1 ACCEPTED SOLUTION

Accepted Solutions
GIkar
Associate III

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)) ;

View solution in original post

1 REPLY 1
GIkar
Associate III

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)) ;