tim.h 377 B

1234567891011121314151617181920212223242526272829303132
  1. #ifndef __TIM_H
  2. #define __TIM_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <stdbool.h>
  7. //
  8. void tim_init(void);
  9. //
  10. void tim_set_string_timer(bool state);
  11. //
  12. void tim_set_string_freq(void);
  13. //
  14. void tim_signal_start(void);
  15. //
  16. void tim_inf_set_time(uint16_t time);
  17. //
  18. void tim_warmup(void);
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22. #endif