/* * Copyright (C) 2015 HAW Hamburg * 2016 Freie Universität Berlin * 2016 INRIA * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup cpu_atmega2560 * @{ * * @file * @brief Default timer configuration * * @author René Herthel * @author Hauke Petersen * @author Francisco Acosta */ #ifndef DEFAULT_TIMER_CONFIG_H #define DEFAULT_TIMER_CONFIG_H #ifdef __cplusplus extern "C" { #endif #ifndef TIMER_NUMOF #define TIMER_NUMOF (2U) #define TIMER_CHANNEL_NUMOF (3) #define TIMER_0 MEGA_TIMER1 #define TIMER_0_MASK &TIMSK1 #define TIMER_0_FLAG &TIFR1 #define TIMER_0_ISRA TIMER1_COMPA_vect #define TIMER_0_ISRB TIMER1_COMPB_vect #define TIMER_0_ISRC TIMER1_COMPC_vect #define TIMER_1 MEGA_TIMER4 #define TIMER_1_MASK &TIMSK4 #define TIMER_1_FLAG &TIFR4 #define TIMER_1_ISRA TIMER4_COMPA_vect #define TIMER_1_ISRB TIMER4_COMPB_vect #define TIMER_1_ISRC TIMER4_COMPC_vect #endif /* TIMER_NUMOF */ #ifdef __cplusplus } #endif #endif /* DEFAULT_TIMER_CONFIG_H */ /** @} */