| 1234567891011121314151617181920 |
- /*
- * Copyright (c) 2006-2023, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2023-11-15 BetMul first version
- */
- #ifndef __DRV_CLOCK_TIMER_H__
- #define __DRV_CLOCK_TIMER_H__
- #include <rtconfig.h>
- #ifdef RT_USING_CLOCK_TIME
- int rt_hw_clock_timer_init(void);
- #endif
- #endif /* __DRV_CLOCK_TIMER_H__ */
|