blob: 18393f702e3c5525af66be682d83dc8b77d4dee9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*
* Copyright 2022 Birte Kristina 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
|