Fix support status for ATmega103.
[bertos.git] / bertos / drv / i2c.h
index 70e33fb149107f5127199dcbfbf2b7c85ee757f9..4d0be944c02a4816ba41d76b8351e0166519e05a 100644 (file)
  * \version $Id$
  * \author Francesco Sacchi <batt@develer.com>
  *
- * $WIZARD_MODULE = {
- * "name" : "i2c",
- * "depends" : [],
- * "configuration" : "bertos/cfg/cfg_i2c.h"
- * }
+ * $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"
  */
+
 #ifndef DRV_I2C_H
 #define DRV_I2C_H
 
@@ -56,9 +56,7 @@
  * use that.
  * With this you can choose, at compile time, which backend to use.
  *
- * $WIZARD_LIST = {
- * "i2c_backend" : ["I2C_BACKEND_BUILTIN", "I2C_BACKEND_BITBANG"]
- * }
+ * $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