Toggle navigation
Documentation
The friendly Operating System for the Internet of Things
Main Page
Related Pages
Supported Boards
Modules
Namespaces
Namespace List
Namespace Members
All
Functions
Variables
Enumerations
Data Structures
Data Structures
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
w
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Enumerator
Related Symbols
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
_
a
b
c
d
e
f
g
h
i
k
l
m
n
p
q
r
s
t
u
v
w
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
►
RIOT OS
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
default_timer_config.h
Go to the documentation of this file.
1
/*
2
* Copyright (C) Josua Arndt, Steffen Robertz 2017 RWTH Aachen
3
*
4
* This file is subject to the terms and conditions of the GNU Lesser
5
* General Public License v2.1. See the file LICENSE in the top level
6
* directory for more details.
7
*/
8
20
#ifndef DEFAULT_TIMER_CONFIG_H
21
#define DEFAULT_TIMER_CONFIG_H
22
23
#ifdef __cplusplus
24
extern
"C"
{
25
#endif
26
27
#ifndef TIMER_NUMOF
28
#define TIMER_NUMOF (3U)
29
#define TIMER_CHANNEL_NUMOF (3)
30
31
#define TIMER_0 MEGA_TIMER4
32
#define TIMER_0_MASK &TIMSK4
33
#define TIMER_0_FLAG &TIFR4
34
#define TIMER_0_ISRA TIMER4_COMPA_vect
35
#define TIMER_0_ISRB TIMER4_COMPB_vect
36
#define TIMER_0_ISRC TIMER4_COMPC_vect
37
38
#define TIMER_1 MEGA_TIMER5
39
#define TIMER_1_MASK &TIMSK5
40
#define TIMER_1_FLAG &TIFR5
41
#define TIMER_1_ISRA TIMER5_COMPA_vect
42
#define TIMER_1_ISRB TIMER5_COMPB_vect
43
#define TIMER_1_ISRC TIMER5_COMPC_vect
44
45
#define TIMER_2 MEGA_TIMER1
46
#define TIMER_2_MASK &TIMSK1
47
#define TIMER_2_FLAG &TIFR1
48
#define TIMER_2_ISRA TIMER1_COMPA_vect
49
#define TIMER_2_ISRB TIMER1_COMPB_vect
50
#define TIMER_2_ISRC TIMER1_COMPC_vect
51
#endif
/* TIMER_NUMOF */
52
53
#ifdef __cplusplus
54
}
55
#endif
56
57
#endif
/* DEFAULT_TIMER_CONFIG_H */
Generated on Fri Apr 4 2025 19:45:34 by
1.12.0