BeRTOS
timer_avr.h
Go to the documentation of this file.
00001 
00040 #ifndef TIMER_AVR_H_
00041 #define TIMER_AVR_H_
00042 
00043 #include <cpu/detect.h>
00044 
00045 #if CPU_AVR_MEGA
00046     #include "timer_mega.h"
00047 #elif CPU_AVR_XMEGA
00048     #include "timer_xmega.h"
00049 /*#elif  Add other AVR families here */
00050 #else
00051     #error Unknown CPU
00052 #endif
00053 
00054 
00055 #endif /* TIMER_AVR_H_ */