Naze32 clone with Frysky receiver
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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