Home
last modified time | relevance | path

Searched refs:USART_ISR_FE (Results 1 – 24 of 24) sorted by relevance

/loramac-node-3.4.0/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Inc/
Dstm32l4xx_hal_smartcard_ex.h160 #define SMARTCARD_FLAG_FE USART_ISR_FE /*!< SMARTCARD frame error …
Dstm32l4xx_ll_lpuart.h191 #define LL_LPUART_ISR_FE USART_ISR_FE /*!< Framing error flag */
1686 return (READ_BIT(LPUARTx->ISR, USART_ISR_FE) == (USART_ISR_FE)); in LL_LPUART_IsActiveFlag_FE()
Dstm32l4xx_hal_irda.h433 #define IRDA_FLAG_FE USART_ISR_FE /*!< IRDA frame error …
Dstm32l4xx_hal_usart.h403 #define USART_FLAG_FE USART_ISR_FE /*!< USART frame error …
Dstm32l4xx_ll_usart.h233 #define LL_USART_ISR_FE USART_ISR_FE /*!< Framing error fl…
3068 return ((READ_BIT(USARTx->ISR, USART_ISR_FE) == (USART_ISR_FE)) ? 1UL : 0UL); in LL_USART_IsActiveFlag_FE()
Dstm32l4xx_hal_uart.h739 #define UART_FLAG_FE USART_ISR_FE /*!< UART frame error …
/loramac-node-3.4.0/src/boards/mcu/stm32/STM32L0xx_HAL_Driver/Inc/
Dstm32l0xx_ll_lpuart.h163 #define LL_LPUART_ISR_FE USART_ISR_FE /*!< Framing error flag */
1307 return (READ_BIT(LPUARTx->ISR, USART_ISR_FE) == (USART_ISR_FE)); in LL_LPUART_IsActiveFlag_FE()
Dstm32l0xx_hal_usart.h272 #define USART_FLAG_FE USART_ISR_FE /*!< USART frame error …
Dstm32l0xx_hal_irda.h332 #define IRDA_FLAG_FE USART_ISR_FE /*!< IRDA Framing error …
Dstm32l0xx_ll_usart.h204 #define LL_USART_ISR_FE USART_ISR_FE /*!< Framing error fl…
2537 return (READ_BIT(USARTx->ISR, USART_ISR_FE) == (USART_ISR_FE)); in LL_USART_IsActiveFlag_FE()
Dstm32l0xx_hal_smartcard.h496 #define SMARTCARD_FLAG_FE USART_ISR_FE /*!< SMARTCARD frame error …
Dstm32l0xx_hal_uart.h625 #define UART_FLAG_FE USART_ISR_FE /*!< UART frame error …
/loramac-node-3.4.0/src/boards/mcu/stm32/STM32L0xx_HAL_Driver/Src/
Dstm32l0xx_hal_irda.c1462 errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE)); in HAL_IRDA_IRQHandler()
1488 if(((isrflags & USART_ISR_FE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) in HAL_IRDA_IRQHandler()
Dstm32l0xx_hal_smartcard.c1301 …errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE | U… in HAL_SMARTCARD_IRQHandler()
1328 if(((isrflags & USART_ISR_FE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) in HAL_SMARTCARD_IRQHandler()
Dstm32l0xx_hal_usart.c1474 errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE)); in HAL_USART_IRQHandler()
1507 if(((isrflags & USART_ISR_FE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) in HAL_USART_IRQHandler()
Dstm32l0xx_hal_uart.c1632 errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE)); in HAL_UART_IRQHandler()
1658 if(((isrflags & USART_ISR_FE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) in HAL_UART_IRQHandler()
/loramac-node-3.4.0/src/boards/mcu/stm32/STM32L4xx_HAL_Driver/Src/
Dstm32l4xx_hal_usart.c2147 …errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE | U… in HAL_USART_IRQHandler()
2149 errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE)); in HAL_USART_IRQHandler()
2191 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_USART_IRQHandler()
Dstm32l4xx_hal_irda.c1924 errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE)); in HAL_IRDA_IRQHandler()
1958 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_IRDA_IRQHandler()
Dstm32l4xx_hal_smartcard.c1908 …errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE | U… in HAL_SMARTCARD_IRQHandler()
1949 if (((isrflags & USART_ISR_FE) != 0U) && ((cr3its & USART_CR3_EIE) != 0U)) in HAL_SMARTCARD_IRQHandler()
Dstm32l4xx_hal_uart.c2186 errorflags = (isrflags & (uint32_t)(USART_ISR_PE | USART_ISR_FE | USART_ISR_ORE | USART_ISR_NE)); in HAL_UART_IRQHandler()
2227 if (((isrflags & USART_ISR_FE) != RESET) && ((cr3its & USART_CR3_EIE) != RESET)) in HAL_UART_IRQHandler()
/loramac-node-3.4.0/src/boards/SKiM881AXL/cmsis/
Dstm32l081xx.h6141 #define USART_ISR_FE USART_ISR_FE_Msk /*!< Framing Error */ macro
/loramac-node-3.4.0/src/boards/NucleoL073/cmsis/
Dstm32l073xx.h7203 #define USART_ISR_FE USART_ISR_FE_Msk /*!< Framing Error */ macro
/loramac-node-3.4.0/src/boards/B-L072Z-LRWAN1/cmsis/
Dstm32l072xx.h7044 #define USART_ISR_FE USART_ISR_FE_Msk /*!< Framing Error */ macro
/loramac-node-3.4.0/src/boards/NucleoL476/cmsis/
Dstm32l476xx.h16111 #define USART_ISR_FE USART_ISR_FE_Msk /*!< Framing Error */ macro