diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-12-11 10:09:37 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-12-11 10:09:37 +0100 |
commit | c1027b36455cf47d336d42e2e42a63f096f7e772 (patch) | |
tree | 8d4590b6493c73ab9f85d78a9aa384495e103e7b /include/arch/msp430fr5994lp/driver/uptime.h | |
parent | 00205e4996df209dc43664af7c171d34c2e97cda (diff) |
New architecture: msp430fr5994lp (MSP430FR5994 Launchpad)
Almost exclusively copypasted from msp430fr5969lp.
May be replaced by symlinks later on.
Diffstat (limited to 'include/arch/msp430fr5994lp/driver/uptime.h')
-rw-r--r-- | include/arch/msp430fr5994lp/driver/uptime.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/arch/msp430fr5994lp/driver/uptime.h b/include/arch/msp430fr5994lp/driver/uptime.h new file mode 100644 index 0000000..3a52840 --- /dev/null +++ b/include/arch/msp430fr5994lp/driver/uptime.h @@ -0,0 +1,30 @@ +#ifndef UPTIME_H +#define UPTIME_H + +#include <msp430.h> +#include <stdint.h> + +class Uptime { + private: + Uptime(const Uptime ©); +#ifdef TIMER_S + uint16_t seconds; +#endif + + public: +#ifdef TIMER_S + Uptime () : seconds(0) {} +#else + Uptime () {} +#endif + inline uint16_t get_us() { return TA0R; } + inline uint16_t get_cycles() { return TA2R; } +#ifdef TIMER_S + inline uint16_t get_s() { return seconds; } + inline void tick_s() { seconds++; } +#endif +}; + +extern Uptime uptime; + +#endif |