1 /* 2 * Copyright (c) 2020, Shenzhen Academy of Aerospace Technology 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2020-10-16 Dystopia the first version 9 */ 10 11 #ifndef SERIAL_REG_H 12 #define SERIAL_REG_H 13 14 struct uart_reg 15 { 16 unsigned int uartdata; 17 unsigned int uartstatus; 18 unsigned int uartctrl; 19 unsigned int uartscaler; 20 }; 21 22 #endif /* end of include guard: SERIAL_REG_H */ 23