Typo.
[bertos.git] / bertos / drv / i2c.c
index e54c921ee2c52cf2b53024d31bcaa47f78f04bf5..44798aa935963bc8b07f610f0df1e1466336176a 100644 (file)
 
 #include "i2c.h"
 
+#include "cfg/cfg_i2c.h"
+
+#if !CONFIG_I2C_DISABLE_OLD_API
+
 /**
  * Send a sequence of bytes in master transmitter mode
  * to the selected slave device through the I2C bus.
@@ -87,7 +91,7 @@ bool i2c_recv(void *_buf, size_t count)
 
        return true;
 }
-
+#endif /* !CONFIG_I2C_DISABLE_OLD_API */
 
 void i2c_genericWrite(struct I2c *i2c, const void *_buf, size_t count)
 {