Removed Werror, so launchpad code compiles again.
[goodfet] / firmware / include / i2c.h
1 /*! \file i2c.h
2   \author Dave Huseby
3   \brief i2c bus protocol functions.
4 */
5
6 #ifndef I2C_H
7 #define I2C_H
8
9 #include "app.h"
10
11 #define I2C_APP 0x02
12
13 extern app_t const i2c_app;
14
15 #endif
16