timekeeping.h 289 B

123456789101112131415161718192021222324
  1. /*
  2. * File: timekeeping.h
  3. * Author: david
  4. *
  5. * Created on April 13, 2021, 10:29 AM
  6. */
  7. #ifndef TIMEKEEPING_H
  8. #define TIMEKEEPING_H
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. void init_timekeeping(void);
  13. uint16_t millis(void);
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17. #endif /* TIMEKEEPING_H */