MeterLogger
Macros
uart_register.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define REG_UART_BASE(i)   (0x60000000 + (i)*0xf00)
 
#define UART_FIFO(i)   (REG_UART_BASE(i) + 0x0)
 
#define UART_RXFIFO_RD_BYTE   0x000000FF
 
#define UART_RXFIFO_RD_BYTE_S   0
 
#define UART_INT_RAW(i)   (REG_UART_BASE(i) + 0x4)
 
#define UART_RXFIFO_TOUT_INT_RAW   (BIT(8))
 
#define UART_BRK_DET_INT_RAW   (BIT(7))
 
#define UART_CTS_CHG_INT_RAW   (BIT(6))
 
#define UART_DSR_CHG_INT_RAW   (BIT(5))
 
#define UART_RXFIFO_OVF_INT_RAW   (BIT(4))
 
#define UART_FRM_ERR_INT_RAW   (BIT(3))
 
#define UART_PARITY_ERR_INT_RAW   (BIT(2))
 
#define UART_TXFIFO_EMPTY_INT_RAW   (BIT(1))
 
#define UART_RXFIFO_FULL_INT_RAW   (BIT(0))
 
#define UART_INT_ST(i)   (REG_UART_BASE(i) + 0x8)
 
#define UART_RXFIFO_TOUT_INT_ST   (BIT(8))
 
#define UART_BRK_DET_INT_ST   (BIT(7))
 
#define UART_CTS_CHG_INT_ST   (BIT(6))
 
#define UART_DSR_CHG_INT_ST   (BIT(5))
 
#define UART_RXFIFO_OVF_INT_ST   (BIT(4))
 
#define UART_FRM_ERR_INT_ST   (BIT(3))
 
#define UART_PARITY_ERR_INT_ST   (BIT(2))
 
#define UART_TXFIFO_EMPTY_INT_ST   (BIT(1))
 
#define UART_RXFIFO_FULL_INT_ST   (BIT(0))
 
#define UART_INT_ENA(i)   (REG_UART_BASE(i) + 0xC)
 
#define UART_RXFIFO_TOUT_INT_ENA   (BIT(8))
 
#define UART_BRK_DET_INT_ENA   (BIT(7))
 
#define UART_CTS_CHG_INT_ENA   (BIT(6))
 
#define UART_DSR_CHG_INT_ENA   (BIT(5))
 
#define UART_RXFIFO_OVF_INT_ENA   (BIT(4))
 
#define UART_FRM_ERR_INT_ENA   (BIT(3))
 
#define UART_PARITY_ERR_INT_ENA   (BIT(2))
 
#define UART_TXFIFO_EMPTY_INT_ENA   (BIT(1))
 
#define UART_RXFIFO_FULL_INT_ENA   (BIT(0))
 
#define UART_INT_CLR(i)   (REG_UART_BASE(i) + 0x10)
 
#define UART_RXFIFO_TOUT_INT_CLR   (BIT(8))
 
#define UART_BRK_DET_INT_CLR   (BIT(7))
 
#define UART_CTS_CHG_INT_CLR   (BIT(6))
 
#define UART_DSR_CHG_INT_CLR   (BIT(5))
 
#define UART_RXFIFO_OVF_INT_CLR   (BIT(4))
 
#define UART_FRM_ERR_INT_CLR   (BIT(3))
 
#define UART_PARITY_ERR_INT_CLR   (BIT(2))
 
#define UART_TXFIFO_EMPTY_INT_CLR   (BIT(1))
 
#define UART_RXFIFO_FULL_INT_CLR   (BIT(0))
 
#define UART_CLKDIV(i)   (REG_UART_BASE(i) + 0x14)
 
#define UART_CLKDIV_CNT   0x000FFFFF
 
#define UART_CLKDIV_S   0
 
#define UART_AUTOBAUD(i)   (REG_UART_BASE(i) + 0x18)
 
#define UART_GLITCH_FILT   0x000000FF
 
#define UART_GLITCH_FILT_S   8
 
#define UART_AUTOBAUD_EN   (BIT(0))
 
#define UART_STATUS(i)   (REG_UART_BASE(i) + 0x1C)
 
#define UART_TXD   (BIT(31))
 
#define UART_RTSN   (BIT(30))
 
#define UART_DTRN   (BIT(29))
 
#define UART_TXFIFO_CNT   0x000000FF
 
#define UART_TXFIFO_CNT_S   16
 
#define UART_RXD   (BIT(15))
 
#define UART_CTSN   (BIT(14))
 
#define UART_DSRN   (BIT(13))
 
#define UART_RXFIFO_CNT   0x000000FF
 
#define UART_RXFIFO_CNT_S   0
 
#define UART_CONF0(i)   (REG_UART_BASE(i) + 0x20)
 
#define UART_DTR_INV   (BIT(24))
 
#define UART_RTS_INV   (BIT(23))
 
#define UART_TXD_INV   (BIT(22))
 
#define UART_DSR_INV   (BIT(21))
 
#define UART_CTS_INV   (BIT(20))
 
#define UART_RXD_INV   (BIT(19))
 
#define UART_TXFIFO_RST   (BIT(18))
 
#define UART_RXFIFO_RST   (BIT(17))
 
#define UART_IRDA_EN   (BIT(16))
 
#define UART_TX_FLOW_EN   (BIT(15))
 
#define UART_LOOPBACK   (BIT(14))
 
#define UART_IRDA_RX_INV   (BIT(13))
 
#define UART_IRDA_TX_INV   (BIT(12))
 
#define UART_IRDA_WCTL   (BIT(11))
 
#define UART_IRDA_TX_EN   (BIT(10))
 
#define UART_IRDA_DPLX   (BIT(9))
 
#define UART_TXD_BRK   (BIT(8))
 
#define UART_SW_DTR   (BIT(7))
 
#define UART_SW_RTS   (BIT(6))
 
#define UART_STOP_BIT_NUM   0x00000003
 
#define UART_STOP_BIT_NUM_S   4
 
#define UART_BIT_NUM   0x00000003
 
#define UART_BIT_NUM_S   2
 
#define UART_PARITY_EN   (BIT(1))
 
#define UART_PARITY_EN_M   0x00000001
 
#define UART_PARITY_EN_S   1
 
#define UART_PARITY   (BIT(0))
 
#define UART_PARITY_M   0x00000001
 
#define UART_PARITY_S   0
 
#define UART_CONF1(i)   (REG_UART_BASE(i) + 0x24)
 
#define UART_RX_TOUT_EN   (BIT(31))
 
#define UART_RX_TOUT_THRHD   0x0000007F
 
#define UART_RX_TOUT_THRHD_S   24
 
#define UART_RX_FLOW_EN   (BIT(23))
 
#define UART_RX_FLOW_THRHD   0x0000007F
 
#define UART_RX_FLOW_THRHD_S   16
 
#define UART_TXFIFO_EMPTY_THRHD   0x0000007F
 
#define UART_TXFIFO_EMPTY_THRHD_S   8
 
#define UART_RXFIFO_FULL_THRHD   0x0000007F
 
#define UART_RXFIFO_FULL_THRHD_S   0
 
#define UART_LOWPULSE(i)   (REG_UART_BASE(i) + 0x28)
 
#define UART_LOWPULSE_MIN_CNT   0x000FFFFF
 
#define UART_LOWPULSE_MIN_CNT_S   0
 
#define UART_HIGHPULSE(i)   (REG_UART_BASE(i) + 0x2C)
 
#define UART_HIGHPULSE_MIN_CNT   0x000FFFFF
 
#define UART_HIGHPULSE_MIN_CNT_S   0
 
#define UART_PULSE_NUM(i)   (REG_UART_BASE(i) + 0x30)
 
#define UART_PULSE_NUM_CNT   0x0003FF
 
#define UART_PULSE_NUM_CNT_S   0
 
#define UART_DATE(i)   (REG_UART_BASE(i) + 0x78)
 
#define UART_ID(i)   (REG_UART_BASE(i) + 0x7C)
 

Macro Definition Documentation

◆ REG_UART_BASE

#define REG_UART_BASE (   i)    (0x60000000 + (i)*0xf00)

Definition at line 25 of file uart_register.h.

◆ UART_AUTOBAUD

#define UART_AUTOBAUD (   i)    (REG_UART_BASE(i) + 0x18)

Definition at line 80 of file uart_register.h.

◆ UART_AUTOBAUD_EN

#define UART_AUTOBAUD_EN   (BIT(0))

Definition at line 83 of file uart_register.h.

◆ UART_BIT_NUM

#define UART_BIT_NUM   0x00000003

Definition at line 119 of file uart_register.h.

Referenced by uart_config(), and uart_set_word_length().

◆ UART_BIT_NUM_S

#define UART_BIT_NUM_S   2

Definition at line 120 of file uart_register.h.

Referenced by uart_config(), and uart_set_word_length().

◆ UART_BRK_DET_INT_CLR

#define UART_BRK_DET_INT_CLR   (BIT(7))

Definition at line 67 of file uart_register.h.

◆ UART_BRK_DET_INT_ENA

#define UART_BRK_DET_INT_ENA   (BIT(7))

Definition at line 56 of file uart_register.h.

◆ UART_BRK_DET_INT_RAW

#define UART_BRK_DET_INT_RAW   (BIT(7))

Definition at line 34 of file uart_register.h.

◆ UART_BRK_DET_INT_ST

#define UART_BRK_DET_INT_ST   (BIT(7))

Definition at line 45 of file uart_register.h.

◆ UART_CLKDIV

#define UART_CLKDIV (   i)    (REG_UART_BASE(i) + 0x14)

Definition at line 76 of file uart_register.h.

◆ UART_CLKDIV_CNT

#define UART_CLKDIV_CNT   0x000FFFFF

Definition at line 77 of file uart_register.h.

◆ UART_CLKDIV_S

#define UART_CLKDIV_S   0

Definition at line 78 of file uart_register.h.

◆ UART_CONF0

#define UART_CONF0 (   i)    (REG_UART_BASE(i) + 0x20)

◆ UART_CONF1

#define UART_CONF1 (   i)    (REG_UART_BASE(i) + 0x24)

Definition at line 128 of file uart_register.h.

Referenced by uart_config().

◆ UART_CTS_CHG_INT_CLR

#define UART_CTS_CHG_INT_CLR   (BIT(6))

Definition at line 68 of file uart_register.h.

◆ UART_CTS_CHG_INT_ENA

#define UART_CTS_CHG_INT_ENA   (BIT(6))

Definition at line 57 of file uart_register.h.

◆ UART_CTS_CHG_INT_RAW

#define UART_CTS_CHG_INT_RAW   (BIT(6))

Definition at line 35 of file uart_register.h.

◆ UART_CTS_CHG_INT_ST

#define UART_CTS_CHG_INT_ST   (BIT(6))

Definition at line 46 of file uart_register.h.

◆ UART_CTS_INV

#define UART_CTS_INV   (BIT(20))

Definition at line 102 of file uart_register.h.

◆ UART_CTSN

#define UART_CTSN   (BIT(14))

Definition at line 92 of file uart_register.h.

◆ UART_DATE

#define UART_DATE (   i)    (REG_UART_BASE(i) + 0x78)

Definition at line 152 of file uart_register.h.

◆ UART_DSR_CHG_INT_CLR

#define UART_DSR_CHG_INT_CLR   (BIT(5))

Definition at line 69 of file uart_register.h.

◆ UART_DSR_CHG_INT_ENA

#define UART_DSR_CHG_INT_ENA   (BIT(5))

Definition at line 58 of file uart_register.h.

◆ UART_DSR_CHG_INT_RAW

#define UART_DSR_CHG_INT_RAW   (BIT(5))

Definition at line 36 of file uart_register.h.

◆ UART_DSR_CHG_INT_ST

#define UART_DSR_CHG_INT_ST   (BIT(5))

Definition at line 47 of file uart_register.h.

◆ UART_DSR_INV

#define UART_DSR_INV   (BIT(21))

Definition at line 101 of file uart_register.h.

◆ UART_DSRN

#define UART_DSRN   (BIT(13))

Definition at line 93 of file uart_register.h.

◆ UART_DTR_INV

#define UART_DTR_INV   (BIT(24))

Definition at line 98 of file uart_register.h.

◆ UART_DTRN

#define UART_DTRN   (BIT(29))

Definition at line 88 of file uart_register.h.

◆ UART_FIFO

#define UART_FIFO (   i)    (REG_UART_BASE(i) + 0x0)

Definition at line 28 of file uart_register.h.

Referenced by uart0_rx_intr_handler(), and uart_tx_one_char().

◆ UART_FRM_ERR_INT_CLR

#define UART_FRM_ERR_INT_CLR   (BIT(3))

Definition at line 71 of file uart_register.h.

Referenced by uart0_rx_intr_handler().

◆ UART_FRM_ERR_INT_ENA

#define UART_FRM_ERR_INT_ENA   (BIT(3))

Definition at line 60 of file uart_register.h.

Referenced by uart_config().

◆ UART_FRM_ERR_INT_RAW

#define UART_FRM_ERR_INT_RAW   (BIT(3))

Definition at line 38 of file uart_register.h.

◆ UART_FRM_ERR_INT_ST

#define UART_FRM_ERR_INT_ST   (BIT(3))

Definition at line 49 of file uart_register.h.

Referenced by uart0_rx_intr_handler().

◆ UART_GLITCH_FILT

#define UART_GLITCH_FILT   0x000000FF

Definition at line 81 of file uart_register.h.

◆ UART_GLITCH_FILT_S

#define UART_GLITCH_FILT_S   8

Definition at line 82 of file uart_register.h.

◆ UART_HIGHPULSE

#define UART_HIGHPULSE (   i)    (REG_UART_BASE(i) + 0x2C)

Definition at line 144 of file uart_register.h.

◆ UART_HIGHPULSE_MIN_CNT

#define UART_HIGHPULSE_MIN_CNT   0x000FFFFF

Definition at line 145 of file uart_register.h.

◆ UART_HIGHPULSE_MIN_CNT_S

#define UART_HIGHPULSE_MIN_CNT_S   0

Definition at line 146 of file uart_register.h.

◆ UART_ID

#define UART_ID (   i)    (REG_UART_BASE(i) + 0x7C)

Definition at line 153 of file uart_register.h.

◆ UART_INT_CLR

#define UART_INT_CLR (   i)    (REG_UART_BASE(i) + 0x10)

Definition at line 65 of file uart_register.h.

Referenced by uart0_rx_intr_handler(), and uart_config().

◆ UART_INT_ENA

#define UART_INT_ENA (   i)    (REG_UART_BASE(i) + 0xC)

Definition at line 54 of file uart_register.h.

Referenced by uart_config().

◆ UART_INT_RAW

#define UART_INT_RAW (   i)    (REG_UART_BASE(i) + 0x4)

Definition at line 32 of file uart_register.h.

◆ UART_INT_ST

#define UART_INT_ST (   i)    (REG_UART_BASE(i) + 0x8)

Definition at line 43 of file uart_register.h.

Referenced by uart0_rx_intr_handler().

◆ UART_IRDA_DPLX

#define UART_IRDA_DPLX   (BIT(9))

Definition at line 113 of file uart_register.h.

◆ UART_IRDA_EN

#define UART_IRDA_EN   (BIT(16))

Definition at line 106 of file uart_register.h.

◆ UART_IRDA_RX_INV

#define UART_IRDA_RX_INV   (BIT(13))

Definition at line 109 of file uart_register.h.

◆ UART_IRDA_TX_EN

#define UART_IRDA_TX_EN   (BIT(10))

Definition at line 112 of file uart_register.h.

◆ UART_IRDA_TX_INV

#define UART_IRDA_TX_INV   (BIT(12))

Definition at line 110 of file uart_register.h.

◆ UART_IRDA_WCTL

#define UART_IRDA_WCTL   (BIT(11))

Definition at line 111 of file uart_register.h.

◆ UART_LOOPBACK

#define UART_LOOPBACK   (BIT(14))

Definition at line 108 of file uart_register.h.

◆ UART_LOWPULSE

#define UART_LOWPULSE (   i)    (REG_UART_BASE(i) + 0x28)

Definition at line 140 of file uart_register.h.

◆ UART_LOWPULSE_MIN_CNT

#define UART_LOWPULSE_MIN_CNT   0x000FFFFF

Definition at line 141 of file uart_register.h.

◆ UART_LOWPULSE_MIN_CNT_S

#define UART_LOWPULSE_MIN_CNT_S   0

Definition at line 142 of file uart_register.h.

◆ UART_PARITY

#define UART_PARITY   (BIT(0))

Definition at line 124 of file uart_register.h.

Referenced by uart_set_parity().

◆ UART_PARITY_EN

#define UART_PARITY_EN   (BIT(1))

Definition at line 121 of file uart_register.h.

Referenced by uart_set_parity().

◆ UART_PARITY_EN_M

#define UART_PARITY_EN_M   0x00000001

Definition at line 122 of file uart_register.h.

Referenced by uart_config().

◆ UART_PARITY_EN_S

#define UART_PARITY_EN_S   1

Definition at line 123 of file uart_register.h.

Referenced by uart_config().

◆ UART_PARITY_ERR_INT_CLR

#define UART_PARITY_ERR_INT_CLR   (BIT(2))

Definition at line 72 of file uart_register.h.

◆ UART_PARITY_ERR_INT_ENA

#define UART_PARITY_ERR_INT_ENA   (BIT(2))

Definition at line 61 of file uart_register.h.

◆ UART_PARITY_ERR_INT_RAW

#define UART_PARITY_ERR_INT_RAW   (BIT(2))

Definition at line 39 of file uart_register.h.

◆ UART_PARITY_ERR_INT_ST

#define UART_PARITY_ERR_INT_ST   (BIT(2))

Definition at line 50 of file uart_register.h.

◆ UART_PARITY_M

#define UART_PARITY_M   0x00000001

Definition at line 125 of file uart_register.h.

Referenced by uart_config().

◆ UART_PARITY_S

#define UART_PARITY_S   0

Definition at line 126 of file uart_register.h.

Referenced by uart_config().

◆ UART_PULSE_NUM

#define UART_PULSE_NUM (   i)    (REG_UART_BASE(i) + 0x30)

Definition at line 148 of file uart_register.h.

◆ UART_PULSE_NUM_CNT

#define UART_PULSE_NUM_CNT   0x0003FF

Definition at line 149 of file uart_register.h.

◆ UART_PULSE_NUM_CNT_S

#define UART_PULSE_NUM_CNT_S   0

Definition at line 150 of file uart_register.h.

◆ UART_RTS_INV

#define UART_RTS_INV   (BIT(23))

Definition at line 99 of file uart_register.h.

◆ UART_RTSN

#define UART_RTSN   (BIT(30))

Definition at line 87 of file uart_register.h.

◆ UART_RX_FLOW_EN

#define UART_RX_FLOW_EN   (BIT(23))

Definition at line 132 of file uart_register.h.

Referenced by uart_config().

◆ UART_RX_FLOW_THRHD

#define UART_RX_FLOW_THRHD   0x0000007F

Definition at line 133 of file uart_register.h.

Referenced by uart_config().

◆ UART_RX_FLOW_THRHD_S

#define UART_RX_FLOW_THRHD_S   16

Definition at line 134 of file uart_register.h.

Referenced by uart_config().

◆ UART_RX_TOUT_EN

#define UART_RX_TOUT_EN   (BIT(31))

Definition at line 129 of file uart_register.h.

Referenced by uart_config().

◆ UART_RX_TOUT_THRHD

#define UART_RX_TOUT_THRHD   0x0000007F

Definition at line 130 of file uart_register.h.

Referenced by uart_config().

◆ UART_RX_TOUT_THRHD_S

#define UART_RX_TOUT_THRHD_S   24

Definition at line 131 of file uart_register.h.

Referenced by uart_config().

◆ UART_RXD

#define UART_RXD   (BIT(15))

Definition at line 91 of file uart_register.h.

◆ UART_RXD_INV

#define UART_RXD_INV   (BIT(19))

Definition at line 103 of file uart_register.h.

◆ UART_RXFIFO_CNT

#define UART_RXFIFO_CNT   0x000000FF

Definition at line 94 of file uart_register.h.

Referenced by uart0_rx_intr_handler().

◆ UART_RXFIFO_CNT_S

#define UART_RXFIFO_CNT_S   0

Definition at line 95 of file uart_register.h.

Referenced by uart0_rx_intr_handler().

◆ UART_RXFIFO_FULL_INT_CLR

#define UART_RXFIFO_FULL_INT_CLR   (BIT(0))

Definition at line 74 of file uart_register.h.

Referenced by uart0_rx_intr_handler().

◆ UART_RXFIFO_FULL_INT_ENA

#define UART_RXFIFO_FULL_INT_ENA   (BIT(0))

Definition at line 63 of file uart_register.h.

Referenced by uart_config().

◆ UART_RXFIFO_FULL_INT_RAW

#define UART_RXFIFO_FULL_INT_RAW   (BIT(0))

Definition at line 41 of file uart_register.h.

◆ UART_RXFIFO_FULL_INT_ST

#define UART_RXFIFO_FULL_INT_ST   (BIT(0))

Definition at line 52 of file uart_register.h.

Referenced by uart0_rx_intr_handler().

◆ UART_RXFIFO_FULL_THRHD

#define UART_RXFIFO_FULL_THRHD   0x0000007F

Definition at line 137 of file uart_register.h.

Referenced by uart_config().

◆ UART_RXFIFO_FULL_THRHD_S

#define UART_RXFIFO_FULL_THRHD_S   0

Definition at line 138 of file uart_register.h.

Referenced by uart_config().

◆ UART_RXFIFO_OVF_INT_CLR

#define UART_RXFIFO_OVF_INT_CLR   (BIT(4))

Definition at line 70 of file uart_register.h.

◆ UART_RXFIFO_OVF_INT_ENA

#define UART_RXFIFO_OVF_INT_ENA   (BIT(4))

Definition at line 59 of file uart_register.h.

◆ UART_RXFIFO_OVF_INT_RAW

#define UART_RXFIFO_OVF_INT_RAW   (BIT(4))

Definition at line 37 of file uart_register.h.

◆ UART_RXFIFO_OVF_INT_ST

#define UART_RXFIFO_OVF_INT_ST   (BIT(4))

Definition at line 48 of file uart_register.h.

◆ UART_RXFIFO_RD_BYTE

#define UART_RXFIFO_RD_BYTE   0x000000FF

Definition at line 29 of file uart_register.h.

◆ UART_RXFIFO_RD_BYTE_S

#define UART_RXFIFO_RD_BYTE_S   0

Definition at line 30 of file uart_register.h.

◆ UART_RXFIFO_RST

#define UART_RXFIFO_RST   (BIT(17))

Definition at line 105 of file uart_register.h.

Referenced by uart_config().

◆ UART_RXFIFO_TOUT_INT_CLR

#define UART_RXFIFO_TOUT_INT_CLR   (BIT(8))

Definition at line 66 of file uart_register.h.

Referenced by uart0_rx_intr_handler().

◆ UART_RXFIFO_TOUT_INT_ENA

#define UART_RXFIFO_TOUT_INT_ENA   (BIT(8))

Definition at line 55 of file uart_register.h.

Referenced by uart_config().

◆ UART_RXFIFO_TOUT_INT_RAW

#define UART_RXFIFO_TOUT_INT_RAW   (BIT(8))

Definition at line 33 of file uart_register.h.

◆ UART_RXFIFO_TOUT_INT_ST

#define UART_RXFIFO_TOUT_INT_ST   (BIT(8))

Definition at line 44 of file uart_register.h.

Referenced by uart0_rx_intr_handler().

◆ UART_STATUS

#define UART_STATUS (   i)    (REG_UART_BASE(i) + 0x1C)

Definition at line 85 of file uart_register.h.

Referenced by uart0_rx_intr_handler(), and uart_tx_one_char().

◆ UART_STOP_BIT_NUM

#define UART_STOP_BIT_NUM   0x00000003

Definition at line 117 of file uart_register.h.

Referenced by uart_config(), and uart_set_stop_bits().

◆ UART_STOP_BIT_NUM_S

#define UART_STOP_BIT_NUM_S   4

Definition at line 118 of file uart_register.h.

Referenced by uart_config(), and uart_set_stop_bits().

◆ UART_SW_DTR

#define UART_SW_DTR   (BIT(7))

Definition at line 115 of file uart_register.h.

◆ UART_SW_RTS

#define UART_SW_RTS   (BIT(6))

Definition at line 116 of file uart_register.h.

◆ UART_TX_FLOW_EN

#define UART_TX_FLOW_EN   (BIT(15))

Definition at line 107 of file uart_register.h.

◆ UART_TXD

#define UART_TXD   (BIT(31))

Definition at line 86 of file uart_register.h.

◆ UART_TXD_BRK

#define UART_TXD_BRK   (BIT(8))

Definition at line 114 of file uart_register.h.

◆ UART_TXD_INV

#define UART_TXD_INV   (BIT(22))

Definition at line 100 of file uart_register.h.

◆ UART_TXFIFO_CNT

#define UART_TXFIFO_CNT   0x000000FF

Definition at line 89 of file uart_register.h.

Referenced by uart_tx_one_char().

◆ UART_TXFIFO_CNT_S

#define UART_TXFIFO_CNT_S   16

Definition at line 90 of file uart_register.h.

Referenced by uart_tx_one_char().

◆ UART_TXFIFO_EMPTY_INT_CLR

#define UART_TXFIFO_EMPTY_INT_CLR   (BIT(1))

Definition at line 73 of file uart_register.h.

◆ UART_TXFIFO_EMPTY_INT_ENA

#define UART_TXFIFO_EMPTY_INT_ENA   (BIT(1))

Definition at line 62 of file uart_register.h.

◆ UART_TXFIFO_EMPTY_INT_RAW

#define UART_TXFIFO_EMPTY_INT_RAW   (BIT(1))

Definition at line 40 of file uart_register.h.

◆ UART_TXFIFO_EMPTY_INT_ST

#define UART_TXFIFO_EMPTY_INT_ST   (BIT(1))

Definition at line 51 of file uart_register.h.

◆ UART_TXFIFO_EMPTY_THRHD

#define UART_TXFIFO_EMPTY_THRHD   0x0000007F

Definition at line 135 of file uart_register.h.

◆ UART_TXFIFO_EMPTY_THRHD_S

#define UART_TXFIFO_EMPTY_THRHD_S   8

Definition at line 136 of file uart_register.h.

◆ UART_TXFIFO_RST

#define UART_TXFIFO_RST   (BIT(18))

Definition at line 104 of file uart_register.h.

Referenced by uart_config().