X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fdrv%2Fi2c.c;h=ae4237097769eab5628eaf7eb08de91618dda0ed;hb=15810459b8f5fb09b12cef6f8e4d4e64d167087b;hp=e54c921ee2c52cf2b53024d31bcaa47f78f04bf5;hpb=0d4c0c64f736f37dba565aa9e113d3920ef905f9;p=bertos.git diff --git a/bertos/drv/i2c.c b/bertos/drv/i2c.c index e54c921e..ae423709 100644 --- a/bertos/drv/i2c.c +++ b/bertos/drv/i2c.c @@ -37,6 +37,12 @@ #include "i2c.h" +#include "cfg/cfg_i2c.h" + +#if !CONFIG_I2C_DISABLE_OLD_API + +I2c local_i2c_old_api; + /** * Send a sequence of bytes in master transmitter mode * to the selected slave device through the I2C bus. @@ -87,7 +93,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) {