summaryrefslogtreecommitdiff
path: root/include/msp430fr5969lp/driver/uptime.h
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2017-12-13 15:29:23 +0100
committerDaniel Friesel <derf@finalrewind.org>2017-12-13 15:29:23 +0100
commite9bebe253fdecee009414bdce7ccdfba83f980e6 (patch)
tree49330d7108869ddfbe8682fb6f20ff79794f57b5 /include/msp430fr5969lp/driver/uptime.h
parent22f2335259594569ba4a95544939ef72f3d1bb9d (diff)
add simple cache benchmark application
Diffstat (limited to 'include/msp430fr5969lp/driver/uptime.h')
-rw-r--r--include/msp430fr5969lp/driver/uptime.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/msp430fr5969lp/driver/uptime.h b/include/msp430fr5969lp/driver/uptime.h
index f18a7fe..eaa7203 100644
--- a/include/msp430fr5969lp/driver/uptime.h
+++ b/include/msp430fr5969lp/driver/uptime.h
@@ -1,6 +1,7 @@
#ifndef UPTIME_H
#define UPTIME_H
+#include <msp430.h>
#include <stdint.h>
class Uptime {
@@ -9,7 +10,9 @@ class Uptime {
public:
Uptime () {}
- uint32_t get();
+ inline uint16_t get_us() { return TA0R; }
+ inline uint16_t get_s() { return 0; }
+ inline uint16_t get_cycles() { return TA2R; }
};
extern Uptime uptime;