Naze32 clone with Frysky receiver
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

timer.h 146B

1234567891011121314
  1. /*
  2. * Time-Keeping helper
  3. */
  4. #ifndef _TIMER_H
  5. #define _TIMER_H
  6. typedef uint64_t time_t;
  7. void timerInit(void);
  8. time_t timerGet(void);
  9. #endif