| 1234567891011121314151617 |
- /*
- * Copyright (c) 2006-2022, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2023-02-21 GuEe-GUI the first version
- */
- #include <setup.h>
- #include <board.h>
- void rt_hw_board_init(void)
- {
- rt_hw_common_setup();
- }
|