Lines Matching refs:isrflags
2240 uint32_t isrflags = READ_REG(huart->Instance->ISR); in HAL_UART_IRQHandler() local
2248 …errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE | U… in HAL_UART_IRQHandler()
2252 if (((isrflags & USART_ISR_RXNE_RXFNE) != 0U) in HAL_UART_IRQHandler()
2270 if (((isrflags & USART_ISR_PE) != 0U) && ((cr1its & USART_CR1_PEIE) != 0U)) in HAL_UART_IRQHandler()
2278 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_UART_IRQHandler()
2286 if (((isrflags & USART_ISR_NE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_UART_IRQHandler()
2294 if (((isrflags & USART_ISR_ORE) != 0U) in HAL_UART_IRQHandler()
2304 if (((isrflags & USART_ISR_RTOF) != 0U) && ((cr1its & USART_CR1_RTOIE) != 0U)) in HAL_UART_IRQHandler()
2315 if (((isrflags & USART_ISR_RXNE_RXFNE) != 0U) in HAL_UART_IRQHandler()
2405 && ((isrflags & USART_ISR_IDLE) != 0U) in HAL_UART_IRQHandler()
2490 if (((isrflags & USART_ISR_WUF) != 0U) && ((cr3its & USART_CR3_WUFIE) != 0U)) in HAL_UART_IRQHandler()
2508 if (((isrflags & USART_ISR_TXE_TXFNF) != 0U) in HAL_UART_IRQHandler()
2520 if (((isrflags & USART_ISR_TC) != 0U) && ((cr1its & USART_CR1_TCIE) != 0U)) in HAL_UART_IRQHandler()
2527 if (((isrflags & USART_ISR_TXFE) != 0U) && ((cr1its & USART_CR1_TXFEIE) != 0U)) in HAL_UART_IRQHandler()
2540 if (((isrflags & USART_ISR_RXFF) != 0U) && ((cr1its & USART_CR1_RXFFIE) != 0U)) in HAL_UART_IRQHandler()
4316 uint32_t isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_8BIT_FIFOEN() local
4324 while ((nb_rx_data > 0U) && ((isrflags & USART_ISR_RXNE_RXFNE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4330 isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_8BIT_FIFOEN()
4333 if ((isrflags & (USART_ISR_PE | USART_ISR_FE | USART_ISR_NE)) != 0U) in UART_RxISR_8BIT_FIFOEN()
4336 if (((isrflags & USART_ISR_PE) != 0U) && ((cr1its & USART_CR1_PEIE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4344 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4352 if (((isrflags & USART_ISR_NE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4465 uint32_t isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_16BIT_FIFOEN() local
4473 while ((nb_rx_data > 0U) && ((isrflags & USART_ISR_RXNE_RXFNE) != 0U)) in UART_RxISR_16BIT_FIFOEN()
4480 isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_16BIT_FIFOEN()
4483 if ((isrflags & (USART_ISR_PE | USART_ISR_FE | USART_ISR_NE)) != 0U) in UART_RxISR_16BIT_FIFOEN()
4486 if (((isrflags & USART_ISR_PE) != 0U) && ((cr1its & USART_CR1_PEIE) != 0U)) in UART_RxISR_16BIT_FIFOEN()
4494 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_16BIT_FIFOEN()
4502 if (((isrflags & USART_ISR_NE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_16BIT_FIFOEN()