Reformat.
[bertos.git] / bertos / cfg / cfg_i2c.h
index 9ff37c4e34765bccec2887ecac2f2d2f481ced00..d8929427e7871330a2c1351eafba79e965f536ad 100644 (file)
 #ifndef CFG_I2C_H
 #define CFG_I2C_H
 
-/// Comunication frequency
+/**
+*Comunication frequency.
+*
+* $WIZ$ type = "int"
+*/
 #define CONFIG_I2C_FREQ  100000UL
 
+/**
+ * I2C start timeout.
+ * For how many milliseconds the i2c_start
+ * should try to get an ACK before
+ * returning error.
+ *
+ * $WIZ$ type = "int"
+ */
+#define CONFIG_I2C_START_TIMEOUT 100
+
+/**
+ * I2C backend the driver should use.
+ *
+ * I2C_BACKEND_BUILTIN: Use (if present) the builtin i2c hardware.
+ * I2C_BACKEND_BITBANG: Use the emulated bitbang driver.
+ * \see drv/i2c.h for more information.
+ *
+ * $WIZ$ type = "enum",
+ * $WIZ$ value_list = "i2c_backend"
+ */
+#define CONFIG_I2C_BACKEND I2C_BACKEND_BUILTIN
+
+/**
+ * Module logging level.
+ *
+ * $WIZ$ type = "enum"
+ * $WIZ$ value_list = "log_level"
+ */
+#define I2C_LOG_LEVEL      LOG_LVL_INFO
+
+/**
+ * module logging format.
+ *
+ * $WIZ$ type = "enum"
+ * $WIZ$ value_list = "log_format"
+ */
+#define I2C_LOG_FORMAT     LOG_FMT_TERSE
+
 #endif /* CFG_I2C_H */