libopencm3
A free/libre/open-source firmware library for various ARM Cortex-M3 microcontrollers.
USART Hardware Flow Control Selection
Collaboration diagram for USART Hardware Flow Control Selection:

Macros

#define USART_FLOWCONTROL_NONE   0x00
 
#define USART_FLOWCONTROL_RTS   USART_CR3_RTSE
 
#define USART_FLOWCONTROL_CTS   USART_CR3_CTSE
 
#define USART_FLOWCONTROL_RTS_CTS   (USART_CR3_RTSE | USART_CR3_CTSE)
 

Detailed Description

Macro Definition Documentation

◆ USART_FLOWCONTROL_CTS

#define USART_FLOWCONTROL_CTS   USART_CR3_CTSE

Definition at line 92 of file usart_common_all.h.

◆ USART_FLOWCONTROL_NONE

#define USART_FLOWCONTROL_NONE   0x00

Definition at line 90 of file usart_common_all.h.

◆ USART_FLOWCONTROL_RTS

#define USART_FLOWCONTROL_RTS   USART_CR3_RTSE

Definition at line 91 of file usart_common_all.h.

◆ USART_FLOWCONTROL_RTS_CTS

#define USART_FLOWCONTROL_RTS_CTS   (USART_CR3_RTSE | USART_CR3_CTSE)

Definition at line 93 of file usart_common_all.h.