fix compilation errors due to undefined variables
[protos/imu.git] / imu.c
diff --git a/imu.c b/imu.c
index 745df11..efaba62 100644 (file)
--- a/imu.c
+++ b/imu.c
@@ -40,11 +40,15 @@ int mag_z;
 
 
 void i2c_recvevent(uint8_t * buf, int8_t size)
+void i2c_recvevent(uint8_t *buf, int8_t size)
 {
+       (void)buf;
+       (void)size;
 }
 
 void i2c_sendevent(int8_t size)
 {
+       (void)size;
 }
 
 
@@ -65,6 +69,8 @@ uint16_t counter;
 
 void do_led_blink(void *dummy)
 {
+       (void)dummy;
+
 #if 1 /* simple blink */
        LED1_TOGGLE();
 #endif