blob: 5685136c96dcced25e9b9a8fbf4da2d2d97eb35e (
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_overflow_t uint8_t;
class Counter {
private:
Counter(const Counter ©);
public:
uint16_t value;
volatile uint8_t overflow;
Counter() : overflow(0) {}
inline void start() {
overflow = 0;
TCNT1 = 0;
TCCR1A = 0;
TCCR1B = _BV(CS10); // no prescaler
TIMSK1 = _BV(TOIE1);
}
inline void stop() {
TCCR1B = 0;
value = TCNT1;
}
};
extern Counter counter;
|