summaryrefslogtreecommitdiff
path: root/include/arch/lm4f120h5qr-stellaris/driver/uptime.h
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2021-02-18 23:01:57 +0100
committerDaniel Friesel <derf@finalrewind.org>2021-02-18 23:01:57 +0100
commit38f0e84d3b5da56c1441f2f779246ccf7b23d5c4 (patch)
tree9fdb70ca1393ca8de11b11e751feb12c36afb8d3 /include/arch/lm4f120h5qr-stellaris/driver/uptime.h
parentb3cea73a75cb46e39ed7c7e6f765fc842a40fabf (diff)
add minimal LM4F120H5QR (LM4F120XL Stellaris Launchpad) support
Diffstat (limited to 'include/arch/lm4f120h5qr-stellaris/driver/uptime.h')
-rw-r--r--include/arch/lm4f120h5qr-stellaris/driver/uptime.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/include/arch/lm4f120h5qr-stellaris/driver/uptime.h b/include/arch/lm4f120h5qr-stellaris/driver/uptime.h
new file mode 100644
index 0000000..4031e61
--- /dev/null
+++ b/include/arch/lm4f120h5qr-stellaris/driver/uptime.h
@@ -0,0 +1,32 @@
+/*
+ * Copyright 2021 Daniel Friesel
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+#ifndef UPTIME_H
+#define UPTIME_H
+
+#include <stdint.h>
+
+class Uptime {
+ private:
+ Uptime(const Uptime &copy);
+#ifdef TIMER_S
+ uint32_t seconds;
+#endif
+
+ public:
+#ifdef TIMER_S
+ Uptime () : seconds(0) {}
+#else
+ Uptime () {}
+#endif
+#ifdef TIMER_S
+ inline uint32_t get_s() { return seconds; }
+ inline void tick_s() { seconds++; }
+#endif
+};
+
+extern Uptime uptime;
+
+#endif