diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2022-06-28 16:00:06 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2022-06-28 16:00:06 +0200 |
commit | 2a9250606e00c4729db79811e6c50f9ddeb29188 (patch) | |
tree | c44cd1c5235308659aabc7373a20876ed4ffa59b /include/arch/infineon-tc397-tft-kit/driver/counter.h | |
parent | 0a9bce42c0e09432cd34b415f106621c851bb8a6 (diff) |
tc1796/tc397 are not properly implemented → rename to -mock
Diffstat (limited to 'include/arch/infineon-tc397-tft-kit/driver/counter.h')
-rw-r--r-- | include/arch/infineon-tc397-tft-kit/driver/counter.h | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/include/arch/infineon-tc397-tft-kit/driver/counter.h b/include/arch/infineon-tc397-tft-kit/driver/counter.h deleted file mode 100644 index b7330db..0000000 --- a/include/arch/infineon-tc397-tft-kit/driver/counter.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * 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 ©); - - public: - counter_value_t value; - volatile counter_overflow_t overflow; - - Counter() : overflow(0) {} - - inline void start() { - } - - inline void stop() { - } -}; - -extern Counter counter; - -#endif |