Remove CVS logs.
[bertos.git] / bertos / drv / i2c.h
index 3d72003399c46a3a0bdd273f72ef295e7b685963..aa4d2846cd621d093242004b5df0068e6921af28 100644 (file)
  *
  * \version $Id$
  * \author Francesco Sacchi <batt@develer.com>
+ *
+ * $WIZARD_MODULE = {
+ * "name" : "i2c",
+ * "depends" : [],
+ * "configuration" : "bertos/cfg/cfg_i2c.h"
+ * }
  */
 #ifndef DRV_I2C_H
 #define DRV_I2C_H
  * Sometimes your cpu does not have a builtin
  * i2c driver or you don't want, for some reason, to
  * use that.
- * You can choose, at compile time, which backend to use.
- * \{
+ * With this you can choose, at compile time, which backend to use.
+ *
+ * $WIZARD_LIST = {
+ * "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
-/*\}*/
 
 
 /**