Skip to main content
Visitor II
January 8, 2020
Solved

LL_DMA_IsActiveFlag complement in HAL

  • January 8, 2020
  • 1 reply
  • 848 views

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

    This topic has been closed for replies.
    Best answer by GIkar

    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

    GIkarAuthorAnswer
    Visitor II
    January 8, 2020

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