Andrew Boyson / lpc1768

Dependents:   test-lpc1768 oldheating gps motorhome ... more

Committer:
andrewboyson
Date:
Mon May 27 10:11:37 2019 +0000
Revision:
51:fb18aa3ec115
Brought in the timer, random and scan modules as they fit better here.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 51:fb18aa3ec115 1 #include <stdint.h>
andrewboyson 51:fb18aa3ec115 2 #include <stdbool.h>
andrewboyson 51:fb18aa3ec115 3
andrewboyson 51:fb18aa3ec115 4 extern uint32_t MsTimerCount;
andrewboyson 51:fb18aa3ec115 5 extern bool MsTimerAbsolute (uint32_t untilMs);
andrewboyson 51:fb18aa3ec115 6 extern bool MsTimerRelative (uint32_t baseMsCount, uint32_t intervalMs);
andrewboyson 51:fb18aa3ec115 7 extern bool MsTimerRepetitive(uint32_t* pBaseMsCount, uint32_t intervalMs);
andrewboyson 51:fb18aa3ec115 8 extern void MsTimerMain(void);