Add author.
[bertos.git] / bertos / drv / i2c.c
index 575dc7681e49648b789f61b53a68f4d96c9cffc6..e54c921ee2c52cf2b53024d31bcaa47f78f04bf5 100644 (file)
@@ -88,3 +88,20 @@ bool i2c_recv(void *_buf, size_t count)
        return true;
 }
 
+
+void i2c_genericWrite(struct I2c *i2c, const void *_buf, size_t count)
+{
+       const uint8_t *buf = (const uint8_t *)_buf;
+
+       while (count--)
+               i2c_putc(i2c, *buf++);
+}
+
+void i2c_genericRead(struct I2c *i2c, void *_buf, size_t count)
+{
+       uint8_t *buf = (uint8_t *)_buf;
+
+       while (count--)
+               *buf++ = i2c_getc(i2c);
+}
+