diff options
Diffstat (limited to 'include/msp430fr5969lp')
-rw-r--r-- | include/msp430fr5969lp/driver/uptime.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/msp430fr5969lp/driver/uptime.h b/include/msp430fr5969lp/driver/uptime.h new file mode 100644 index 0000000..f18a7fe --- /dev/null +++ b/include/msp430fr5969lp/driver/uptime.h @@ -0,0 +1,17 @@ +#ifndef UPTIME_H +#define UPTIME_H + +#include <stdint.h> + +class Uptime { + private: + Uptime(const Uptime ©); + + public: + Uptime () {} + uint32_t get(); +}; + +extern Uptime uptime; + +#endif |