Lines Matching refs:isrflags

2193   uint32_t isrflags   = READ_REG(husart->Instance->ISR);  in HAL_USART_IRQHandler()  local
2202 …errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE | U… in HAL_USART_IRQHandler()
2205 …errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE | U… in HAL_USART_IRQHandler()
2211 if (((isrflags & USART_ISR_RXNE_RXFNE) != 0U) in HAL_USART_IRQHandler()
2215 if (((isrflags & USART_ISR_RXNE) != 0U) in HAL_USART_IRQHandler()
2239 if (((isrflags & USART_ISR_PE) != 0U) && ((cr1its & USART_CR1_PEIE) != 0U)) in HAL_USART_IRQHandler()
2247 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_USART_IRQHandler()
2255 if (((isrflags & USART_ISR_NE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_USART_IRQHandler()
2264 if (((isrflags & USART_ISR_ORE) != 0U) in HAL_USART_IRQHandler()
2268 if (((isrflags & USART_ISR_ORE) != 0U) in HAL_USART_IRQHandler()
2279 if (((isrflags & USART_ISR_RTOF) != 0U) && ((cr1its & USART_CR1_RTOIE) != 0U)) in HAL_USART_IRQHandler()
2288 if (((isrflags & USART_ISR_UDR) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_USART_IRQHandler()
2309 if (((isrflags & USART_ISR_RXNE_RXFNE) != 0U) in HAL_USART_IRQHandler()
2313 if (((isrflags & USART_ISR_RXNE) != 0U) in HAL_USART_IRQHandler()
2410 if (((isrflags & USART_ISR_TXE_TXFNF) != 0U) in HAL_USART_IRQHandler()
2414 if (((isrflags & USART_ISR_TXE) != 0U) in HAL_USART_IRQHandler()
2426 if (((isrflags & USART_ISR_TC) != 0U) && ((cr1its & USART_CR1_TCIE) != 0U)) in HAL_USART_IRQHandler()
2434 if (((isrflags & USART_ISR_TXFE) != 0U) && ((cr1its & USART_CR1_TXFEIE) != 0U)) in HAL_USART_IRQHandler()
2447 if (((isrflags & USART_ISR_RXFF) != 0U) && ((cr1its & USART_CR1_RXFFIE) != 0U)) in HAL_USART_IRQHandler()