summaryrefslogtreecommitdiff
path: root/include/arch/infineon-tc397-tft-kit/driver/counter.h
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2022-06-28 15:23:36 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2022-06-28 15:23:36 +0200
commit0a9bce42c0e09432cd34b415f106621c851bb8a6 (patch)
tree15ca8a1cfb743c5eb81daa7f63b977c71432d20e /include/arch/infineon-tc397-tft-kit/driver/counter.h
parent5c82c62dd7975e4cd914c61a9d8cc7a31469f9d1 (diff)
add TC1796 and TC397 mock architectures
only usable for ELF benchmarks, flashing is not supported
Diffstat (limited to 'include/arch/infineon-tc397-tft-kit/driver/counter.h')
-rw-r--r--include/arch/infineon-tc397-tft-kit/driver/counter.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/include/arch/infineon-tc397-tft-kit/driver/counter.h b/include/arch/infineon-tc397-tft-kit/driver/counter.h
new file mode 100644
index 0000000..b7330db
--- /dev/null
+++ b/include/arch/infineon-tc397-tft-kit/driver/counter.h
@@ -0,0 +1,31 @@
+/*
+ * Copyright 2022 Daniel Friesel
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+#ifndef COUNTER_H
+#define COUNTER_H
+
+typedef unsigned int counter_value_t;
+typedef unsigned int counter_overflow_t;
+
+class Counter {
+ private:
+ Counter(const Counter &copy);
+
+ public:
+ counter_value_t value;
+ volatile counter_overflow_t overflow;
+
+ Counter() : overflow(0) {}
+
+ inline void start() {
+ }
+
+ inline void stop() {
+ }
+};
+
+extern Counter counter;
+
+#endif