1
0

drv_timer.h 416 B

12345678910111213141516171819202122
  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. #ifndef __SYS_TIMER_H__
  11. #define __SYS_TIMER_H__
  12. #include <c6x.h>
  13. #include <tistdtypes.h>
  14. void rt_hw_system_timer_init(void);
  15. void rt_hw_system_timer_start(void);
  16. #endif /* __SYS_TIMER_H__ */