blob: c7c0a33ebf5d28f4ed84eb7eb9577e1881edc4b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* Copyright 2020 Birte Kristina Friesel
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "driver/counter.h"
#if defined(TIMER_S) || defined(CONFIG_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++;
}
}
|