1234567891011121314151617181920212223242526272829303132 |
- #ifndef __TIM_H
- #define __TIM_H
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- #include <stdbool.h>
-
- //
- void tim_init(void);
- //
- void tim_set_string_timer(bool state);
- //
- void tim_set_string_freq(void);
- //
- void tim_signal_start(void);
- //
- void tim_inf_set_time(uint16_t time);
- //
- void tim_warmup(void);
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
|