Naze32 clone with Frysky receiver
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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