STM32L443xx 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 397 of file stm32l4xx_hal_uart.h.

#define UART_HWCONTROL_NONE   0x00000000U

No hardware control

Definition at line 395 of file stm32l4xx_hal_uart.h.

Referenced by HAL_UART_Init().

#define UART_HWCONTROL_RTS   USART_CR3_RTSE

Request To Send

Definition at line 396 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 398 of file stm32l4xx_hal_uart.h.