Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: test-lpc1768 oldheating gps motorhome ... more
mstimer/mstimer.h@51:fb18aa3ec115, 2019-05-27 (annotated)
- 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?
| User | Revision | Line number | New 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); |