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.
Fork of mbed_amf_controlsystem by
Misc/SystemTimer.h
- Committer:
- OWenzel
- Date:
- 2016-02-07
- Revision:
- 14:ca7e2678e275
- Parent:
- 0:8a6003b8bb5b
File content as of revision 14:ca7e2678e275:
#ifndef SYSTEMTIMER_H_ #define SYSTEMTIMER_H_ #include "mbed.h" class SystemTimer { private: uint64_t systemUptimeMillis; Ticker systemTicker; public: SystemTimer(); void systemTickerHandler(); uint64_t getUptimeMillis(); bool isTimeoutPassed(uint64_t *timestampMillis, uint32_t timeoutMillis); }; #endif