/** * \file * * * \author Onno * * \brief Low-level timer module for AVR (implementation). * * This module is automatically included so no need to include * in test list. * notest: avr */ #ifndef WIZ_AUTOGEN #warning This file is deprecated, you should probably use timer_mega.c #include #if CPU_AVR_MEGA #include "timer_mega.c" #elif CPU_AVR_XMEGA #include "timer_xmega.c" /*#elif Add other AVR families here */ #else #error Unknown CPU #endif #endif /* WIZ_AUTOGEN */