- #ifndef __TIMER_MODULE_H
- #define __TIMER_MODULE_H
- #include <stdint.h>
- void my_timer(void);
- struct TIMER_Struct
- {
- uint32_t time;
- uint8_t flag;
- };
- uint32_t time_get_delay(struct TIMER_Struct * timer);
- void time_clear(struct TIMER_Struct * timer);
- #endif
|