1 /* 2 * Copyright (c) 2021, Shenzhen Academy of Aerospace Technology 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2021-11-16 Dystopia the first version 9 */ 10 11 #ifndef __SYS_TIMER_H__ 12 #define __SYS_TIMER_H__ 13 14 #include <c6x.h> 15 #include <tistdtypes.h> 16 17 void rt_hw_system_timer_init(void); 18 19 void rt_hw_system_timer_start(void); 20 21 #endif /* __SYS_TIMER_H__ */ 22 23