Change the comment style for the modules and the list, and use the newParser to parse...
[bertos.git] / bertos / drv / i2c.h
index b5548fc5230a2106c218974841ce8733fc57665a..9327ff8d5d75c37fd5ef01e86797a9d9739cb256 100644 (file)
  *
  * -->
  *
- * \brief I2C generic driver functions (interface).
+ * \brief I2C generic driver functions.
  *
  * \version $Id$
  * \author Francesco Sacchi <batt@develer.com>
+ *
+ * $WIZ$ module_name = "i2c"
+ * "configuration" : "bertos/cfg/cfg_i2c.h"
  */
 #ifndef DRV_I2C_H
 #define DRV_I2C_H
 
  * 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
-/*\}*/
 
 
 /**