STM32F479xx HAL User Manual
Defines
UART Interrupt Definitions
UART Exported Constants

Elements values convention: 0xY000XXXX. More...

Defines

#define UART_IT_PE   ((uint32_t)(UART_CR1_REG_INDEX << 28U | USART_CR1_PEIE))
#define UART_IT_TXE   ((uint32_t)(UART_CR1_REG_INDEX << 28U | USART_CR1_TXEIE))
#define UART_IT_TC   ((uint32_t)(UART_CR1_REG_INDEX << 28U | USART_CR1_TCIE))
#define UART_IT_RXNE   ((uint32_t)(UART_CR1_REG_INDEX << 28U | USART_CR1_RXNEIE))
#define UART_IT_IDLE   ((uint32_t)(UART_CR1_REG_INDEX << 28U | USART_CR1_IDLEIE))
#define UART_IT_LBD   ((uint32_t)(UART_CR2_REG_INDEX << 28U | USART_CR2_LBDIE))
#define UART_IT_CTS   ((uint32_t)(UART_CR3_REG_INDEX << 28U | USART_CR3_CTSIE))
#define UART_IT_ERR   ((uint32_t)(UART_CR3_REG_INDEX << 28U | USART_CR3_EIE))

Detailed Description

Elements values convention: 0xY000XXXX.


Define Documentation

#define UART_IT_CTS   ((uint32_t)(UART_CR3_REG_INDEX << 28U | USART_CR3_CTSIE))

Definition at line 379 of file stm32f4xx_hal_uart.h.

#define UART_IT_ERR   ((uint32_t)(UART_CR3_REG_INDEX << 28U | USART_CR3_EIE))

Definition at line 380 of file stm32f4xx_hal_uart.h.

Referenced by UART_Receive_IT(), and UART_Start_Receive_IT().

#define UART_IT_IDLE   ((uint32_t)(UART_CR1_REG_INDEX << 28U | USART_CR1_IDLEIE))

Definition at line 375 of file stm32f4xx_hal_uart.h.

#define UART_IT_LBD   ((uint32_t)(UART_CR2_REG_INDEX << 28U | USART_CR2_LBDIE))

Definition at line 377 of file stm32f4xx_hal_uart.h.

#define UART_IT_PE   ((uint32_t)(UART_CR1_REG_INDEX << 28U | USART_CR1_PEIE))

Definition at line 371 of file stm32f4xx_hal_uart.h.

Referenced by UART_Receive_IT(), and UART_Start_Receive_IT().

#define UART_IT_RXNE   ((uint32_t)(UART_CR1_REG_INDEX << 28U | USART_CR1_RXNEIE))

Definition at line 374 of file stm32f4xx_hal_uart.h.

Referenced by UART_Receive_IT(), and UART_Start_Receive_IT().

#define UART_IT_TC   ((uint32_t)(UART_CR1_REG_INDEX << 28U | USART_CR1_TCIE))

Definition at line 373 of file stm32f4xx_hal_uart.h.

Referenced by UART_EndTransmit_IT(), and UART_Transmit_IT().

#define UART_IT_TXE   ((uint32_t)(UART_CR1_REG_INDEX << 28U | USART_CR1_TXEIE))

Definition at line 372 of file stm32f4xx_hal_uart.h.

Referenced by HAL_UART_Transmit_IT(), and UART_Transmit_IT().