libopencm3
A free/libre/open-source firmware library for various ARM Cortex-M3 microcontrollers.
UART interrupt sources
Collaboration diagram for UART interrupt sources:

Macros

#define UART_INTEN_CTS   (1 << 0)
 
#define UART_INTEN_NCTS   (1 << 1)
 
#define UART_INTEN_RXDRDY   (1 << 2)
 
#define UART_INTEN_TXDRDY   (1 << 7)
 
#define UART_INTEN_ERROR   (1 << 9)
 
#define UART_INTEN_RXTO   (1 << 17)
 

Detailed Description

Macro Definition Documentation

◆ UART_INTEN_CTS

#define UART_INTEN_CTS   (1 << 0)

Definition at line 83 of file common/uart.h.

◆ UART_INTEN_ERROR

#define UART_INTEN_ERROR   (1 << 9)

Definition at line 87 of file common/uart.h.

◆ UART_INTEN_NCTS

#define UART_INTEN_NCTS   (1 << 1)

Definition at line 84 of file common/uart.h.

◆ UART_INTEN_RXDRDY

#define UART_INTEN_RXDRDY   (1 << 2)

Definition at line 85 of file common/uart.h.

◆ UART_INTEN_RXTO

#define UART_INTEN_RXTO   (1 << 17)

Definition at line 88 of file common/uart.h.

◆ UART_INTEN_TXDRDY

#define UART_INTEN_TXDRDY   (1 << 7)

Definition at line 86 of file common/uart.h.