12345678910111213141516171819202122232425262728293031 |
- #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);
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
|