summaryrefslogtreecommitdiff
path: root/src/arch/arduino-nano/driver/counter.cc
blob: 2529b0e1f32e0166df443a53a872602c3984569f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "driver/counter.h"

#if defined(TIMER_S) || defined(WITH_LOOP)
#warn "timer/loop and counter are mutually exclusive. Expect odd behaviour."
#endif

Counter counter;

ISR(TIMER1_OVF_vect)
{
	if (counter.overflow < 255) {
		counter.overflow++;
	}
}