STM32L486xx HAL User Manual
Defines
UART Hardware Flow Control
UART Exported Constants

Defines

#define UART_HWCONTROL_NONE   0x00000000U
#define UART_HWCONTROL_RTS   USART_CR3_RTSE
#define UART_HWCONTROL_CTS   USART_CR3_CTSE
#define UART_HWCONTROL_RTS_CTS   (USART_CR3_RTSE | USART_CR3_CTSE)

Define Documentation

#define UART_HWCONTROL_CTS   USART_CR3_CTSE

Clear To Send

Definition at line 386 of file stm32l4xx_hal_uart.h.

#define UART_HWCONTROL_NONE   0x00000000U

No hardware control

Definition at line 384 of file stm32l4xx_hal_uart.h.

Referenced by HAL_UART_Init().

#define UART_HWCONTROL_RTS   USART_CR3_RTSE

Request To Send

Definition at line 385 of file stm32l4xx_hal_uart.h.

#define UART_HWCONTROL_RTS_CTS   (USART_CR3_RTSE | USART_CR3_CTSE)

Request and Clear To Send

Definition at line 387 of file stm32l4xx_hal_uart.h.