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.
SystemTimer.h
00001 #ifndef SYSTEMTIMER_H_ 00002 #define SYSTEMTIMER_H_ 00003 00004 #include "mbed.h" 00005 00006 class SystemTimer { 00007 00008 private: 00009 00010 uint64_t systemUptimeMillis; 00011 00012 Ticker systemTicker; 00013 00014 public: 00015 00016 SystemTimer(); 00017 00018 void systemTickerHandler(); 00019 00020 uint64_t getUptimeMillis(); 00021 00022 bool isTimeoutPassed(uint64_t *timestampMillis, uint32_t timeoutMillis); 00023 00024 00025 }; 00026 00027 00028 00029 #endif
Generated on Thu Jul 28 2022 08:08:43 by
1.7.2
