blob: e93f97b0a301acc4d7262401797dc7656feb086a (
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"
Counter counter;
#ifndef __acweaving
__attribute__((interrupt(TIMER2_A1_VECTOR))) void handle_timer2_overflow()
{
if (TA2IV == 0x0e) {
if (counter.overflow < 65535) {
counter.overflow++;
}
}
}
#endif
|