X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fdrv%2Fi2c.h;h=a962d171548d6050cf80047732337e49b0c90a22;hb=1d80bcc0499da60198f8c52e5c3004a7e885dae5;hp=b5548fc5230a2106c218974841ce8733fc57665a;hpb=4a5e6831a468c3e120cb3f0f3590aff8824ed7d0;p=bertos.git diff --git a/bertos/drv/i2c.h b/bertos/drv/i2c.h index b5548fc5..a962d171 100644 --- a/bertos/drv/i2c.h +++ b/bertos/drv/i2c.h @@ -30,11 +30,17 @@ * * --> * - * \brief I2C generic driver functions (interface). + * \brief I2C generic driver functions. * * \version $Id$ * \author Francesco Sacchi + * + * $WIZ$ module_name = "i2c" + * $WIZ$ module_configuration = "bertos/cfg/cfg_i2c.h" + * $WIZ$ module_hw = "bertos/hw/hw_i2c_bitbang.h" + * $WIZ$ module_supports = "not atmega103 and not atmega168 and not at91" */ + #ifndef DRV_I2C_H #define DRV_I2C_H @@ -49,11 +55,11 @@ * i2c driver or you don't want, for some reason, to * use that. * With this you can choose, at compile time, which backend to use. - * \{ + * + * $WIZ$ i2c_backend = "I2C_BACKEND_BUILTIN", "I2C_BACKEND_BITBANG" */ #define I2C_BACKEND_BUILTIN 0 ///< Uses cpu builtin i2c driver #define I2C_BACKEND_BITBANG 1 ///< Uses emulated bitbang driver -/*\}*/ /**