diff options
author | Christian Cunningham <cc@localhost> | 2022-03-25 13:10:20 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-03-25 13:10:20 -0700 |
commit | 9322e7bfed9d336377d588623357b93d02312afa (patch) | |
tree | d787153f94ae4e7d49a814038f31aa87e32bc27c /include | |
parent | 357102ee9ccaea7e26c95e409c4c364a63aed423 (diff) |
UART FIFO Interrupting
Diffstat (limited to 'include')
-rw-r--r-- | include/symbols.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/symbols.h b/include/symbols.h index 62f4a96..49db734 100644 --- a/include/symbols.h +++ b/include/symbols.h @@ -13,6 +13,12 @@ enum // The offsets for reach register. GPIO_BASE = (MMIO_BASE + 0x200000), + UART_FIFO_18 = 0, + UART_FIFO_14 = 1, + UART_FIFO_12 = 2, + UART_FIFO_34 = 3, + UART_FIFO_78 = 4, + //// The base address for UART. UART0_BASE = (GPIO_BASE + 0x1000), // for raspi4 0xFE201000, raspi2 & 3 0x3F201000, and 0x20201000 for raspi1 |