tim.h 321 B

12345678910111213141516171819202122232425262728293031
  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. #ifdef __cplusplus
  18. }
  19. #endif
  20. #endif