Andrew Boyson / clock

Dependents:   oldheating gps motorhome heating

Committer:
andrewboyson
Date:
Tue Dec 04 12:26:27 2018 +0000
Revision:
40:53666b1a5848
Child:
57:4daf2e423b27
Renamed timer to hrtimer; added clktimer to handle utc based times.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 40:53666b1a5848 1 #include <stdint.h>
andrewboyson 40:53666b1a5848 2 #include <stdbool.h>
andrewboyson 40:53666b1a5848 3
andrewboyson 40:53666b1a5848 4 extern bool ClkTimerRepetitiveTick (int64_t* pLastCount, int64_t interval);
andrewboyson 40:53666b1a5848 5
andrewboyson 40:53666b1a5848 6 extern int64_t ClkTimerSinceRepetitive(int64_t* pLastCount);
andrewboyson 40:53666b1a5848 7 extern int64_t ClkTimerSince (int64_t lastCount);
andrewboyson 40:53666b1a5848 8 extern int64_t ClkTimerSinceMs (int64_t lastCount);