Lines Matching refs:isrflags

2214   uint32_t isrflags   = READ_REG(huart->Instance->ISR);  in HAL_UART_IRQHandler()  local
2222 …errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE | U… in HAL_UART_IRQHandler()
2226 if (((isrflags & USART_ISR_RXNE_RXFNE) != 0U) in HAL_UART_IRQHandler()
2244 if (((isrflags & USART_ISR_PE) != 0U) && ((cr1its & USART_CR1_PEIE) != 0U)) in HAL_UART_IRQHandler()
2252 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_UART_IRQHandler()
2260 if (((isrflags & USART_ISR_NE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_UART_IRQHandler()
2268 if (((isrflags & USART_ISR_ORE) != 0U) in HAL_UART_IRQHandler()
2278 if (((isrflags & USART_ISR_RTOF) != 0U) && ((cr1its & USART_CR1_RTOIE) != 0U)) in HAL_UART_IRQHandler()
2289 if (((isrflags & USART_ISR_RXNE_RXFNE) != 0U) in HAL_UART_IRQHandler()
2379 && ((isrflags & USART_ISR_IDLE) != 0U) in HAL_UART_IRQHandler()
2474 if (((isrflags & USART_ISR_WUF) != 0U) && ((cr3its & USART_CR3_WUFIE) != 0U)) in HAL_UART_IRQHandler()
2492 if (((isrflags & USART_ISR_TXE_TXFNF) != 0U) in HAL_UART_IRQHandler()
2504 if (((isrflags & USART_ISR_TC) != 0U) && ((cr1its & USART_CR1_TCIE) != 0U)) in HAL_UART_IRQHandler()
2511 if (((isrflags & USART_ISR_TXFE) != 0U) && ((cr1its & USART_CR1_TXFEIE) != 0U)) in HAL_UART_IRQHandler()
2524 if (((isrflags & USART_ISR_RXFF) != 0U) && ((cr1its & USART_CR1_RXFFIE) != 0U)) in HAL_UART_IRQHandler()
4353 uint32_t isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_8BIT_FIFOEN() local
4361 while ((nb_rx_data > 0U) && ((isrflags & USART_ISR_RXNE_RXFNE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4367 isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_8BIT_FIFOEN()
4370 if ((isrflags & (USART_ISR_PE | USART_ISR_FE | USART_ISR_NE)) != 0U) in UART_RxISR_8BIT_FIFOEN()
4373 if (((isrflags & USART_ISR_PE) != 0U) && ((cr1its & USART_CR1_PEIE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4381 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4389 if (((isrflags & USART_ISR_NE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_8BIT_FIFOEN()
4516 uint32_t isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_16BIT_FIFOEN() local
4524 while ((nb_rx_data > 0U) && ((isrflags & USART_ISR_RXNE_RXFNE) != 0U)) in UART_RxISR_16BIT_FIFOEN()
4531 isrflags = READ_REG(huart->Instance->ISR); in UART_RxISR_16BIT_FIFOEN()
4534 if ((isrflags & (USART_ISR_PE | USART_ISR_FE | USART_ISR_NE)) != 0U) in UART_RxISR_16BIT_FIFOEN()
4537 if (((isrflags & USART_ISR_PE) != 0U) && ((cr1its & USART_CR1_PEIE) != 0U)) in UART_RxISR_16BIT_FIFOEN()
4545 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_16BIT_FIFOEN()
4553 if (((isrflags & USART_ISR_NE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in UART_RxISR_16BIT_FIFOEN()