default_timer_config.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2017 Thomas Perrot <thomas.perrot@tupi.fr>
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 (2U)
29 #define TIMER_CHANNEL_NUMOF (3)
30 
31 #define TIMER_0 MEGA_TIMER1
32 #define TIMER_0_MASK &TIMSK1
33 #define TIMER_0_FLAG &TIFR1
34 #define TIMER_0_ISRA TIMER1_COMPA_vect
35 #define TIMER_0_ISRB TIMER1_COMPB_vect
36 #define TIMER_0_ISRC TIMER1_COMPC_vect
37 
38 #define TIMER_1 MEGA_TIMER3
39 #define TIMER_1_MASK &TIMSK3
40 #define TIMER_1_FLAG &TIFR3
41 #define TIMER_1_ISRA TIMER3_COMPA_vect
42 #define TIMER_1_ISRB TIMER3_COMPB_vect
43 #define TIMER_1_ISRC TIMER3_COMPC_vect
44 #endif /* TIMER_NUMOF */
45 
46 #ifdef __cplusplus
47 }
48 #endif
49 
50 #endif /* DEFAULT_TIMER_CONFIG_H */
51