Lines Matching refs:isrflags

2293   uint32_t isrflags   = READ_REG(huart->Instance->ISR);  in HAL_UART_IRQHandler()  local
2301 …errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE | U… in HAL_UART_IRQHandler()
2306 if (((isrflags & USART_ISR_RXNE_RXFNE) != 0U) in HAL_UART_IRQHandler()
2310 if (((isrflags & USART_ISR_RXNE) != 0U) in HAL_UART_IRQHandler()
2334 if (((isrflags & USART_ISR_PE) != 0U) && ((cr1its & USART_CR1_PEIE) != 0U)) in HAL_UART_IRQHandler()
2342 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_UART_IRQHandler()
2350 if (((isrflags & USART_ISR_NE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_UART_IRQHandler()
2359 if (((isrflags & USART_ISR_ORE) != 0U) in HAL_UART_IRQHandler()
2363 if (((isrflags & USART_ISR_ORE) != 0U) in HAL_UART_IRQHandler()
2374 if (((isrflags & USART_ISR_RTOF) != 0U) && ((cr1its & USART_CR1_RTOIE) != 0U)) in HAL_UART_IRQHandler()
2386 if (((isrflags & USART_ISR_RXNE_RXFNE) != 0U) in HAL_UART_IRQHandler()
2390 if (((isrflags & USART_ISR_RXNE) != 0U) in HAL_UART_IRQHandler()
2480 && ((isrflags & USART_ISR_IDLE) != 0U) in HAL_UART_IRQHandler()
2605 if (((isrflags & USART_ISR_WUF) != 0U) && ((cr3its & USART_CR3_WUFIE) != 0U)) in HAL_UART_IRQHandler()
2624 if (((isrflags & USART_ISR_TXE_TXFNF) != 0U) in HAL_UART_IRQHandler()
2628 if (((isrflags & USART_ISR_TXE) != 0U) in HAL_UART_IRQHandler()
2640 if (((isrflags & USART_ISR_TC) != 0U) && ((cr1its & USART_CR1_TCIE) != 0U)) in HAL_UART_IRQHandler()
2648 if (((isrflags & USART_ISR_TXFE) != 0U) && ((cr1its & USART_CR1_TXFEIE) != 0U)) in HAL_UART_IRQHandler()
2661 if (((isrflags & USART_ISR_RXFF) != 0U) && ((cr1its & USART_CR1_RXFFIE) != 0U)) in HAL_UART_IRQHandler()
4591 uint32_t isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_8BIT_FIFOEN() local
4599 while ((nb_rx_data > 0U) && ((isrflags & USART_ISR_RXNE_RXFNE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4605 isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_8BIT_FIFOEN()
4608 if ((isrflags & (USART_ISR_PE | USART_ISR_FE | USART_ISR_NE)) != 0U) in UART_RxISR_8BIT_FIFOEN()
4611 if (((isrflags & USART_ISR_PE) != 0U) && ((cr1its & USART_CR1_PEIE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4619 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4627 if (((isrflags & USART_ISR_NE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4755 uint32_t isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_16BIT_FIFOEN() local
4763 while ((nb_rx_data > 0U) && ((isrflags & USART_ISR_RXNE_RXFNE) != 0U)) in UART_RxISR_16BIT_FIFOEN()
4770 isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_16BIT_FIFOEN()
4773 if ((isrflags & (USART_ISR_PE | USART_ISR_FE | USART_ISR_NE)) != 0U) in UART_RxISR_16BIT_FIFOEN()
4776 if (((isrflags & USART_ISR_PE) != 0U) && ((cr1its & USART_CR1_PEIE) != 0U)) in UART_RxISR_16BIT_FIFOEN()
4784 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_16BIT_FIFOEN()
4792 if (((isrflags & USART_ISR_NE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_16BIT_FIFOEN()