1234567891011121314151617181920 |
- /*
- * Copyright (c) 2006-2023, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2023/06/25 flyingcys first version
- */
- #ifndef BOARD_H__
- #define BOARD_H__
- #include <rtconfig.h>
- #include "drv_uart.h"
- #include "tick.h"
- void rt_hw_board_init(void);
- #endif
|