Home
last modified time | relevance | path

Searched refs:isrflags (Results 1 – 10 of 10) sorted by relevance

/loramac-node-latest/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Src/
Dstm32l4xx_hal_dma2d.c1277 __IO uint32_t isrflags = 0x0U; in HAL_DMA2D_PollForTransfer() local
1287 isrflags = READ_REG(hdma2d->Instance->ISR); in HAL_DMA2D_PollForTransfer()
1288 if ((isrflags & (DMA2D_FLAG_CE|DMA2D_FLAG_TE)) != 0U) in HAL_DMA2D_PollForTransfer()
1290 if ((isrflags & DMA2D_FLAG_CE) != 0U) in HAL_DMA2D_PollForTransfer()
1294 if ((isrflags & DMA2D_FLAG_TE) != 0U) in HAL_DMA2D_PollForTransfer()
1338 isrflags = READ_REG(hdma2d->Instance->ISR); in HAL_DMA2D_PollForTransfer()
1339 if ((isrflags & (DMA2D_FLAG_CAE|DMA2D_FLAG_CE|DMA2D_FLAG_TE)) != 0U) in HAL_DMA2D_PollForTransfer()
1341 if ((isrflags & DMA2D_FLAG_CAE) != 0U) in HAL_DMA2D_PollForTransfer()
1345 if ((isrflags & DMA2D_FLAG_CE) != 0U) in HAL_DMA2D_PollForTransfer()
1349 if ((isrflags & DMA2D_FLAG_TE) != 0U) in HAL_DMA2D_PollForTransfer()
[all …]
Dstm32l4xx_hal_smartcard.c1902 uint32_t isrflags = READ_REG(hsmartcard->Instance->ISR); in HAL_SMARTCARD_IRQHandler() local
1908 …errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE | U… in HAL_SMARTCARD_IRQHandler()
1913 if (((isrflags & USART_ISR_RXNE_RXFNE) != 0U) in HAL_SMARTCARD_IRQHandler()
1917 if (((isrflags & USART_ISR_RXNE) != 0U) in HAL_SMARTCARD_IRQHandler()
1941 if (((isrflags & USART_ISR_PE) != 0U) && ((cr1its & USART_CR1_PEIE) != 0U)) in HAL_SMARTCARD_IRQHandler()
1949 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_SMARTCARD_IRQHandler()
1957 if (((isrflags & USART_ISR_NE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_SMARTCARD_IRQHandler()
1966 if (((isrflags & USART_ISR_ORE) != 0U) in HAL_SMARTCARD_IRQHandler()
1971 if (((isrflags & USART_ISR_ORE) != 0U) in HAL_SMARTCARD_IRQHandler()
1982 if (((isrflags & USART_ISR_RTOF) != 0U) && ((cr1its & USART_CR1_RTOIE) != 0U)) in HAL_SMARTCARD_IRQHandler()
[all …]
Dstm32l4xx_hal_usart.c2138 uint32_t isrflags = READ_REG(husart->Instance->ISR); in HAL_USART_IRQHandler() local
2147 …errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE | U… in HAL_USART_IRQHandler()
2149 errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE)); in HAL_USART_IRQHandler()
2155 if (((isrflags & USART_ISR_RXNE_RXFNE) != 0U) in HAL_USART_IRQHandler()
2159 if (((isrflags & USART_ISR_RXNE) != 0U) in HAL_USART_IRQHandler()
2183 if (((isrflags & USART_ISR_PE) != 0U) && ((cr1its & USART_CR1_PEIE) != 0U)) in HAL_USART_IRQHandler()
2191 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_USART_IRQHandler()
2199 if (((isrflags & USART_ISR_NE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_USART_IRQHandler()
2208 if (((isrflags & USART_ISR_ORE) != 0U) in HAL_USART_IRQHandler()
2212 if (((isrflags & USART_ISR_ORE) != 0U) in HAL_USART_IRQHandler()
[all …]
Dstm32l4xx_hal_irda.c1918 uint32_t isrflags = READ_REG(hirda->Instance->ISR); in HAL_IRDA_IRQHandler() local
1924 errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE)); in HAL_IRDA_IRQHandler()
1929 if (((isrflags & USART_ISR_RXNE_RXFNE) != 0U) && ((cr1its & USART_CR1_RXNEIE_RXFNEIE) != 0U)) in HAL_IRDA_IRQHandler()
1931 if (((isrflags & USART_ISR_RXNE) != 0U) && ((cr1its & USART_CR1_RXNEIE) != 0U)) in HAL_IRDA_IRQHandler()
1950 if (((isrflags & USART_ISR_PE) != 0U) && ((cr1its & USART_CR1_PEIE) != 0U)) in HAL_IRDA_IRQHandler()
1958 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_IRDA_IRQHandler()
1966 if (((isrflags & USART_ISR_NE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_IRDA_IRQHandler()
1974 if (((isrflags & USART_ISR_ORE) != 0U) && in HAL_IRDA_IRQHandler()
1991 if (((isrflags & USART_ISR_RXNE_RXFNE) != 0U) && ((cr1its & USART_CR1_RXNEIE_RXFNEIE) != 0U)) in HAL_IRDA_IRQHandler()
1993 if (((isrflags & USART_ISR_RXNE) != 0U) && ((cr1its & USART_CR1_RXNEIE) != 0U)) in HAL_IRDA_IRQHandler()
[all …]
Dstm32l4xx_hal_uart.c2180 uint32_t isrflags = READ_REG(huart->Instance->ISR); in HAL_UART_IRQHandler() local
2186 errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE)); in HAL_UART_IRQHandler()
2191 if (((isrflags & USART_ISR_RXNE_RXFNE) != RESET) in HAL_UART_IRQHandler()
2195 if (((isrflags & USART_ISR_RXNE) != RESET) in HAL_UART_IRQHandler()
2219 if (((isrflags & USART_ISR_PE) != RESET) && ((cr1its & USART_CR1_PEIE) != RESET)) in HAL_UART_IRQHandler()
2227 if (((isrflags & USART_ISR_FE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) in HAL_UART_IRQHandler()
2235 if (((isrflags & USART_ISR_NE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) in HAL_UART_IRQHandler()
2244 if (((isrflags & USART_ISR_ORE) != RESET) in HAL_UART_IRQHandler()
2248 if (((isrflags & USART_ISR_ORE) != RESET) in HAL_UART_IRQHandler()
2263 if (((isrflags & USART_ISR_RXNE_RXFNE) != RESET) in HAL_UART_IRQHandler()
[all …]
Dstm32l4xx_hal_ltdc.c581 uint32_t isrflags = READ_REG(hltdc->Instance->ISR); in HAL_LTDC_IRQHandler() local
585 if(((isrflags & LTDC_ISR_TERRIF) != 0U) && ((itsources & LTDC_IER_TERRIE) != 0U)) in HAL_LTDC_IRQHandler()
613 if(((isrflags & LTDC_ISR_FUIF) != 0U) && ((itsources & LTDC_IER_FUIE) != 0U)) in HAL_LTDC_IRQHandler()
641 if(((isrflags & LTDC_ISR_LIF) != 0U) && ((itsources & LTDC_IER_LIE) != 0U)) in HAL_LTDC_IRQHandler()
666 if(((isrflags & LTDC_ISR_RRIF) != 0U) && ((itsources & LTDC_IER_RRIE) != 0U)) in HAL_LTDC_IRQHandler()
/loramac-node-latest/src/boards/mcu/stm32/STM32L0xx_HAL_Driver/Src/
Dstm32l0xx_hal_smartcard.c1295 uint32_t isrflags = READ_REG(hsmartcard->Instance->ISR); in HAL_SMARTCARD_IRQHandler() local
1301 …errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE | U… in HAL_SMARTCARD_IRQHandler()
1305 if(((isrflags & USART_ISR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_SMARTCARD_IRQHandler()
1320 if(((isrflags & USART_ISR_PE) != RESET) && ((cr1its & USART_CR1_PEIE) != RESET)) in HAL_SMARTCARD_IRQHandler()
1328 if(((isrflags & USART_ISR_FE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) in HAL_SMARTCARD_IRQHandler()
1336 if(((isrflags & USART_ISR_NE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) in HAL_SMARTCARD_IRQHandler()
1344 if(((isrflags & USART_ISR_ORE) != RESET) && in HAL_SMARTCARD_IRQHandler()
1353 if(((isrflags & USART_ISR_RTOF) != RESET) && ((cr1its & USART_CR1_RTOIE) != RESET)) in HAL_SMARTCARD_IRQHandler()
1364 if(((isrflags & USART_ISR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_SMARTCARD_IRQHandler()
1467 if(((isrflags & USART_ISR_EOBF) != RESET) && ((cr1its & USART_CR1_EOBIE) != RESET)) in HAL_SMARTCARD_IRQHandler()
[all …]
Dstm32l0xx_hal_irda.c1456 uint32_t isrflags = READ_REG(hirda->Instance->ISR); in HAL_IRDA_IRQHandler() local
1462 errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE)); in HAL_IRDA_IRQHandler()
1466 if(((isrflags & USART_ISR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_IRDA_IRQHandler()
1480 if(((isrflags & USART_ISR_PE) != RESET) && ((cr1its & USART_CR1_PEIE) != RESET)) in HAL_IRDA_IRQHandler()
1488 if(((isrflags & USART_ISR_FE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) in HAL_IRDA_IRQHandler()
1496 if(((isrflags & USART_ISR_NE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) in HAL_IRDA_IRQHandler()
1504 if(((isrflags & USART_ISR_ORE) != RESET) && in HAL_IRDA_IRQHandler()
1516 if(((isrflags & USART_ISR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_IRDA_IRQHandler()
1575 if(((isrflags & USART_ISR_TXE) != RESET) && ((cr1its & USART_CR1_TXEIE) != RESET)) in HAL_IRDA_IRQHandler()
1582 if(((isrflags & USART_ISR_TC) != RESET) && ((cr1its & USART_CR1_TCIE) != RESET)) in HAL_IRDA_IRQHandler()
Dstm32l0xx_hal_uart.c1626 uint32_t isrflags = READ_REG(huart->Instance->ISR); in HAL_UART_IRQHandler() local
1632 errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE)); in HAL_UART_IRQHandler()
1636 if(((isrflags & USART_ISR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_UART_IRQHandler()
1650 if(((isrflags & USART_ISR_PE) != RESET) && ((cr1its & USART_CR1_PEIE) != RESET)) in HAL_UART_IRQHandler()
1658 if(((isrflags & USART_ISR_FE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) in HAL_UART_IRQHandler()
1666 if(((isrflags & USART_ISR_NE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) in HAL_UART_IRQHandler()
1674 if(((isrflags & USART_ISR_ORE) != RESET) && in HAL_UART_IRQHandler()
1686 if(((isrflags & USART_ISR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_UART_IRQHandler()
1745 if(((isrflags & USART_ISR_WUF) != RESET) && ((cr3its & USART_CR3_WUFIE) != RESET)) in HAL_UART_IRQHandler()
1756 if(((isrflags & USART_ISR_TXE) != RESET) && ((cr1its & USART_CR1_TXEIE) != RESET)) in HAL_UART_IRQHandler()
[all …]
Dstm32l0xx_hal_usart.c1468 uint32_t isrflags = READ_REG(husart->Instance->ISR); in HAL_USART_IRQHandler() local
1474 errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE)); in HAL_USART_IRQHandler()
1478 if(((isrflags & USART_ISR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_USART_IRQHandler()
1499 if(((isrflags & USART_ISR_PE) != RESET) && ((cr1its & USART_CR1_PEIE) != RESET)) in HAL_USART_IRQHandler()
1507 if(((isrflags & USART_ISR_FE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) in HAL_USART_IRQHandler()
1515 if(((isrflags & USART_ISR_NE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) in HAL_USART_IRQHandler()
1523 if(((isrflags & USART_ISR_ORE) != RESET) && in HAL_USART_IRQHandler()
1535 if(((isrflags & USART_ISR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_USART_IRQHandler()
1613 if(((isrflags & USART_ISR_TXE) != RESET) && ((cr1its & USART_CR1_TXEIE) != RESET)) in HAL_USART_IRQHandler()
1627 if(((isrflags & USART_ISR_TC) != RESET) && ((cr1its & USART_CR1_TCIE) != RESET)) in HAL_USART_IRQHandler()