i2c_avr.h
Go to the documentation of this file.
00001
00038 #ifndef I2C_AVR_H_
00039 #define I2C_AVR_H_
00040 
00041 #include <cpu/detect.h>
00042
00043 #if CPU_AVR_MEGA
00044     #include "i2c_mega.h"
00045 #elif CPU_AVR_XMEGA
00046     #include "i2c_xmega.h"
00047 /*#elif  Add other AVR families here */
00048 #else
00049     #error Unknown CPU
00050 #endif
00051 
00052
00053 #endif /* I2C_AVR_H_ */