summaryrefslogtreecommitdiff
path: root/src/arch/arduino-nano/driver/counter.cc
blob: 0c9f8a4437212342c6b191a7322d5e0d2b13adb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Copyright 2020 Daniel Friesel
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */
#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++;
	}
}