| 1234567891011121314151617181920 |
- #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);
- // ÑÓʱº¯Êý
- void my_delay_ms(uint32_t ms);
- #endif
|