Lines Matching refs:isrflags

2321   uint32_t isrflags   = READ_REG(huart->Instance->ISR);  in HAL_UART_IRQHandler()  local
2329 …errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE | U… in HAL_UART_IRQHandler()
2333 if (((isrflags & USART_ISR_RXNE_RXFNE) != 0U) in HAL_UART_IRQHandler()
2351 if (((isrflags & USART_ISR_PE) != 0U) && ((cr1its & USART_CR1_PEIE) != 0U)) in HAL_UART_IRQHandler()
2359 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_UART_IRQHandler()
2367 if (((isrflags & USART_ISR_NE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_UART_IRQHandler()
2375 if (((isrflags & USART_ISR_ORE) != 0U) in HAL_UART_IRQHandler()
2385 if (((isrflags & USART_ISR_RTOF) != 0U) && ((cr1its & USART_CR1_RTOIE) != 0U)) in HAL_UART_IRQHandler()
2396 if (((isrflags & USART_ISR_RXNE_RXFNE) != 0U) in HAL_UART_IRQHandler()
2486 && ((isrflags & USART_ISR_IDLE) != 0U) in HAL_UART_IRQHandler()
2581 if (((isrflags & USART_ISR_WUF) != 0U) && ((cr3its & USART_CR3_WUFIE) != 0U)) in HAL_UART_IRQHandler()
2599 if (((isrflags & USART_ISR_TXE_TXFNF) != 0U) in HAL_UART_IRQHandler()
2611 if (((isrflags & USART_ISR_TC) != 0U) && ((cr1its & USART_CR1_TCIE) != 0U)) in HAL_UART_IRQHandler()
2618 if (((isrflags & USART_ISR_TXFE) != 0U) && ((cr1its & USART_CR1_TXFEIE) != 0U)) in HAL_UART_IRQHandler()
2631 if (((isrflags & USART_ISR_RXFF) != 0U) && ((cr1its & USART_CR1_RXFFIE) != 0U)) in HAL_UART_IRQHandler()
4437 uint32_t isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_8BIT_FIFOEN() local
4445 while ((nb_rx_data > 0U) && ((isrflags & USART_ISR_RXNE_RXFNE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4451 isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_8BIT_FIFOEN()
4454 if ((isrflags & (USART_ISR_PE | USART_ISR_FE | USART_ISR_NE)) != 0U) in UART_RxISR_8BIT_FIFOEN()
4457 if (((isrflags & USART_ISR_PE) != 0U) && ((cr1its & USART_CR1_PEIE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4465 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4473 if (((isrflags & USART_ISR_NE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4600 uint32_t isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_16BIT_FIFOEN() local
4608 while ((nb_rx_data > 0U) && ((isrflags & USART_ISR_RXNE_RXFNE) != 0U)) in UART_RxISR_16BIT_FIFOEN()
4615 isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_16BIT_FIFOEN()
4618 if ((isrflags & (USART_ISR_PE | USART_ISR_FE | USART_ISR_NE)) != 0U) in UART_RxISR_16BIT_FIFOEN()
4621 if (((isrflags & USART_ISR_PE) != 0U) && ((cr1its & USART_CR1_PEIE) != 0U)) in UART_RxISR_16BIT_FIFOEN()
4629 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_16BIT_FIFOEN()
4637 if (((isrflags & USART_ISR_NE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_16BIT_FIFOEN()