Andrew Boyson / clock

Dependents:   oldheating gps motorhome heating

Committer:
andrewboyson
Date:
Mon Jan 22 18:35:11 2018 +0000
Revision:
24:6c9833e2a049
Child:
25:81014a201736
Moved timer stuff into its own file

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 24:6c9833e2a049 1 #include <stdint.h>
andrewboyson 24:6c9833e2a049 2
andrewboyson 24:6c9833e2a049 3 extern void TimerInit(void);
andrewboyson 24:6c9833e2a049 4 extern uint32_t TimerPeriodCount(uint32_t* pLastCount);
andrewboyson 24:6c9833e2a049 5 extern uint32_t TimerNowCount(void);
andrewboyson 24:6c9833e2a049 6 extern uint32_t TimerSinceCount(uint32_t startCount);
andrewboyson 24:6c9833e2a049 7 extern uint32_t TimerSinceMs(uint32_t startCount);