summaryrefslogtreecommitdiff
path: root/include/arch/arduino-nano/driver/counter.h
blob: d387a354861653e833c12e4956b50e03ed2fc57f (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
#include <avr/io.h>
#include <avr/interrupt.h>

class Counter {
	private:
		Counter(const Counter &copy);

	public:
		uint8_t overflowed;

		Counter() : overflowed(0) {}

		inline void start() {
			overflowed = 0;
			TCNT1 = 0;
			TCCR1A = 0;
			TCCR1B = _BV(CS10);
			TIMSK1 = _BV(TOIE1);
		}

		inline uint16_t stop() {
			TCCR1B = 0;
			return TCNT1;
		}
};

extern Counter counter;