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