/** * \file * * * \brief Low-level timer module for AVR (interface). * * \author Onno * */ #ifndef TIMER_AVR_H_ #define TIMER_AVR_H_ #include #if CPU_AVR_MEGA #include "timer_mega.h" #elif CPU_AVR_XMEGA #include "timer_xmega.h" /*#elif Add other AVR families here */ #else #error Unknown CPU #endif #endif /* TIMER_AVR_H_ */