Home
last modified time | relevance | path

Searched refs:USART_SR_RXNE (Results 1 – 25 of 99) sorted by relevance

1234

/hal_stm32-latest/stm32cube/stm32f2xx/drivers/include/
Dstm32f2xx_ll_usart.h163 #define LL_USART_SR_RXNE USART_SR_RXNE /*!< Read data regist…
1794 return (READ_BIT(USARTx->SR, USART_SR_RXNE) == (USART_SR_RXNE)); in LL_USART_IsActiveFlag_RXNE()
1981 WRITE_REG(USARTx->SR, ~(USART_SR_RXNE)); in LL_USART_ClearFlag_RXNE()
Dstm32f2xx_hal_irda.h295 #define IRDA_FLAG_RXNE ((uint32_t)USART_SR_RXNE)
Dstm32f2xx_hal_smartcard.h382 #define SMARTCARD_FLAG_RXNE ((uint32_t)USART_SR_RXNE)
Dstm32f2xx_hal_usart.h285 #define USART_FLAG_RXNE ((uint32_t)USART_SR_RXNE)
/hal_stm32-latest/stm32cube/stm32f1xx/drivers/include/
Dstm32f1xx_ll_usart.h163 #define LL_USART_SR_RXNE USART_SR_RXNE /*!< Read data regist…
1842 return (READ_BIT(USARTx->SR, USART_SR_RXNE) == (USART_SR_RXNE)); in LL_USART_IsActiveFlag_RXNE()
2029 WRITE_REG(USARTx->SR, ~(USART_SR_RXNE)); in LL_USART_ClearFlag_RXNE()
Dstm32f1xx_hal_irda.h295 #define IRDA_FLAG_RXNE ((uint32_t)USART_SR_RXNE)
Dstm32f1xx_hal_smartcard.h382 #define SMARTCARD_FLAG_RXNE ((uint32_t)USART_SR_RXNE)
Dstm32f1xx_hal_usart.h285 #define USART_FLAG_RXNE ((uint32_t)USART_SR_RXNE)
/hal_stm32-latest/stm32cube/stm32f4xx/drivers/include/
Dstm32f4xx_ll_usart.h163 #define LL_USART_SR_RXNE USART_SR_RXNE /*!< Read data regist…
1794 return (READ_BIT(USARTx->SR, USART_SR_RXNE) == (USART_SR_RXNE)); in LL_USART_IsActiveFlag_RXNE()
1981 WRITE_REG(USARTx->SR, ~(USART_SR_RXNE)); in LL_USART_ClearFlag_RXNE()
Dstm32f4xx_hal_irda.h295 #define IRDA_FLAG_RXNE ((uint32_t)USART_SR_RXNE)
Dstm32f4xx_hal_smartcard.h382 #define SMARTCARD_FLAG_RXNE ((uint32_t)USART_SR_RXNE)
Dstm32f4xx_hal_usart.h285 #define USART_FLAG_RXNE ((uint32_t)USART_SR_RXNE)
/hal_stm32-latest/stm32cube/stm32l1xx/drivers/include/
Dstm32l1xx_ll_usart.h163 #define LL_USART_SR_RXNE USART_SR_RXNE /*!< Read data regist…
1794 return (READ_BIT(USARTx->SR, USART_SR_RXNE) == (USART_SR_RXNE)); in LL_USART_IsActiveFlag_RXNE()
1981 WRITE_REG(USARTx->SR, ~(USART_SR_RXNE)); in LL_USART_ClearFlag_RXNE()
Dstm32l1xx_hal_irda.h295 #define IRDA_FLAG_RXNE ((uint32_t)USART_SR_RXNE)
Dstm32l1xx_hal_usart.h285 #define USART_FLAG_RXNE ((uint32_t)USART_SR_RXNE)
Dstm32l1xx_hal_smartcard.h382 #define SMARTCARD_FLAG_RXNE ((uint32_t)USART_SR_RXNE)
/hal_stm32-latest/stm32cube/stm32f2xx/drivers/src/
Dstm32f2xx_hal_smartcard.c1533 if(((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_SMARTCARD_IRQHandler()
1570 if(((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_SMARTCARD_IRQHandler()
Dstm32f2xx_hal_irda.c1745 if (((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_IRDA_IRQHandler()
1782 if (((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_IRDA_IRQHandler()
Dstm32f2xx_hal_usart.c1790 if (((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_USART_IRQHandler()
1833 if (((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_USART_IRQHandler()
/hal_stm32-latest/stm32cube/stm32f4xx/drivers/src/
Dstm32f4xx_hal_smartcard.c1537 if(((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_SMARTCARD_IRQHandler()
1574 if(((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_SMARTCARD_IRQHandler()
Dstm32f4xx_hal_irda.c1745 if (((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_IRDA_IRQHandler()
1782 if (((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_IRDA_IRQHandler()
/hal_stm32-latest/stm32cube/stm32f1xx/drivers/src/
Dstm32f1xx_hal_smartcard.c1534 if(((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_SMARTCARD_IRQHandler()
1571 if(((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_SMARTCARD_IRQHandler()
Dstm32f1xx_hal_irda.c1745 if (((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_IRDA_IRQHandler()
1782 if (((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_IRDA_IRQHandler()
/hal_stm32-latest/stm32cube/stm32l1xx/drivers/src/
Dstm32l1xx_hal_smartcard.c1533 if(((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_SMARTCARD_IRQHandler()
1570 if(((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_SMARTCARD_IRQHandler()
Dstm32l1xx_hal_irda.c1745 if (((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_IRDA_IRQHandler()
1782 if (((isrflags & USART_SR_RXNE) != RESET) && ((cr1its & USART_CR1_RXNEIE) != RESET)) in HAL_IRDA_IRQHandler()

1234