tim.h 216 B

1234567891011121314151617181920212223
  1. #ifndef __TIM_H
  2. #define __TIM_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. //
  7. void tim_init(void);
  8. //
  9. void tim_signal_start(void);
  10. //
  11. void tim_inf_set_time(uint16_t time);
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15. #endif