blob: 43ddd153e40cb6b5f9b391f2f040c14ba1ae3300 (
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
|
#include <avr/io.h>
#include <avr/interrupt.h>
typedef counter_value_t uint16_t;
typedef counter_overflowed_t uint8_t;
class Counter {
private:
Counter(const Counter ©);
public:
uint16_t value;
volatile uint8_t overflowed;
Counter() : overflowed(0) {}
inline void start() {
overflowed = 0;
TCNT1 = 0;
TCCR1A = 0;
TCCR1B = _BV(CS10); // no prescaler
TIMSK1 = _BV(TOIE1);
}
inline void stop() {
TCCR1B = 0;
value = TCNT1;
}
};
extern Counter counter;
|