X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcfg%2Fcfg_i2c.h;h=ea599a810bd57531f4cdec79fbd7282d79b99b56;hb=b9e1e52093d33494bf4a8ca27c14a56a25b6e0bc;hp=5db96e2f9eceabe891fcd0274b82ca6908c46d91;hpb=60b28c97a62f39dcb90ce51401730917650324b3;p=bertos.git diff --git a/bertos/cfg/cfg_i2c.h b/bertos/cfg/cfg_i2c.h index 5db96e2f..ea599a81 100644 --- a/bertos/cfg/cfg_i2c.h +++ b/bertos/cfg/cfg_i2c.h @@ -32,24 +32,52 @@ * * \brief Configuration file for I2C module. * - * \version $Id$ - * * \author Daniele Basile */ #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 twi_start should try to get an ACK before + * 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 +/** + * Check this to disable I2c deprecated API support. + * + * $WIZ$ type = "boolean" + */ +#define CONFIG_I2C_DISABLE_OLD_API 0 + +/** + * 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 */