Lines Matching refs:isrflags
2326 uint32_t isrflags = READ_REG(huart->Instance->ISR); in HAL_UART_IRQHandler() local
2334 …errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE | U… in HAL_UART_IRQHandler()
2338 if (((isrflags & USART_ISR_RXNE_RXFNE) != 0U) in HAL_UART_IRQHandler()
2356 if (((isrflags & USART_ISR_PE) != 0U) && ((cr1its & USART_CR1_PEIE) != 0U)) in HAL_UART_IRQHandler()
2364 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_UART_IRQHandler()
2372 if (((isrflags & USART_ISR_NE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_UART_IRQHandler()
2380 if (((isrflags & USART_ISR_ORE) != 0U) in HAL_UART_IRQHandler()
2390 if (((isrflags & USART_ISR_RTOF) != 0U) && ((cr1its & USART_CR1_RTOIE) != 0U)) in HAL_UART_IRQHandler()
2401 if (((isrflags & USART_ISR_RXNE_RXFNE) != 0U) in HAL_UART_IRQHandler()
2493 && ((isrflags & USART_ISR_IDLE) != 0U) in HAL_UART_IRQHandler()
2614 if (((isrflags & USART_ISR_WUF) != 0U) && ((cr3its & USART_CR3_WUFIE) != 0U)) in HAL_UART_IRQHandler()
2632 if (((isrflags & USART_ISR_TXE_TXFNF) != 0U) in HAL_UART_IRQHandler()
2644 if (((isrflags & USART_ISR_TC) != 0U) && ((cr1its & USART_CR1_TCIE) != 0U)) in HAL_UART_IRQHandler()
2651 if (((isrflags & USART_ISR_TXFE) != 0U) && ((cr1its & USART_CR1_TXFEIE) != 0U)) in HAL_UART_IRQHandler()
2664 if (((isrflags & USART_ISR_RXFF) != 0U) && ((cr1its & USART_CR1_RXFFIE) != 0U)) in HAL_UART_IRQHandler()
4435 uint32_t isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_8BIT_FIFOEN() local
4443 while ((nb_rx_data > 0U) && ((isrflags & USART_ISR_RXNE_RXFNE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4449 isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_8BIT_FIFOEN()
4452 if ((isrflags & (USART_ISR_PE | USART_ISR_FE | USART_ISR_NE)) != 0U) in UART_RxISR_8BIT_FIFOEN()
4455 if (((isrflags & USART_ISR_PE) != 0U) && ((cr1its & USART_CR1_PEIE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4463 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4471 if (((isrflags & USART_ISR_NE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4599 uint32_t isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_16BIT_FIFOEN() local
4607 while ((nb_rx_data > 0U) && ((isrflags & USART_ISR_RXNE_RXFNE) != 0U)) in UART_RxISR_16BIT_FIFOEN()
4614 isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_16BIT_FIFOEN()
4617 if ((isrflags & (USART_ISR_PE | USART_ISR_FE | USART_ISR_NE)) != 0U) in UART_RxISR_16BIT_FIFOEN()
4620 if (((isrflags & USART_ISR_PE) != 0U) && ((cr1its & USART_CR1_PEIE) != 0U)) in UART_RxISR_16BIT_FIFOEN()
4628 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_16BIT_FIFOEN()
4636 if (((isrflags & USART_ISR_NE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_16BIT_FIFOEN()