STM32F1 Standard Peripheral bibliotheek  1.0
ST Microelectronics bibliotheek documentatie voor de STM32F1 Standard Peripheral Library
 All Data Structures Files Functions Variables Enumerations Groups
USART_Hardware_Flow_Control

Macros

#define USART_HardwareFlowControl_None   ((uint16_t)0x0000)
 
#define USART_HardwareFlowControl_RTS   ((uint16_t)0x0100)
 
#define USART_HardwareFlowControl_CTS   ((uint16_t)0x0200)
 
#define USART_HardwareFlowControl_RTS_CTS   ((uint16_t)0x0300)
 
#define IS_USART_HARDWARE_FLOW_CONTROL(CONTROL)
 

Detailed Description

Macro Definition Documentation

#define IS_USART_HARDWARE_FLOW_CONTROL (   CONTROL)
Value:
(((CONTROL) == USART_HardwareFlowControl_None) || \
((CONTROL) == USART_HardwareFlowControl_RTS) || \
((CONTROL) == USART_HardwareFlowControl_CTS) || \
((CONTROL) == USART_HardwareFlowControl_RTS_CTS))