X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=boards%2Fat91sam7x-ek%2Fbenchmark%2Fkernel_footprint_coop%2Fcfg%2Fcfg_i2c.h;fp=boards%2Fat91sam7x-ek%2Fbenchmark%2Fkernel_footprint_coop%2Fcfg%2Fcfg_i2c.h;h=0000000000000000000000000000000000000000;hb=6a6962e53cd67677151d10b382bbb7d37d4efd83;hp=af36e6b621627ab0e077be6658503920dcec9e43;hpb=e35d406ad6b59984f63a70a8df0e56d665557327;p=bertos.git diff --git a/boards/at91sam7x-ek/benchmark/kernel_footprint_coop/cfg/cfg_i2c.h b/boards/at91sam7x-ek/benchmark/kernel_footprint_coop/cfg/cfg_i2c.h deleted file mode 100644 index af36e6b6..00000000 --- a/boards/at91sam7x-ek/benchmark/kernel_footprint_coop/cfg/cfg_i2c.h +++ /dev/null @@ -1,90 +0,0 @@ -/** - * \file - * - * - * \brief Configuration file for I2C module. - * - * \version $Id$ - * - * \author Daniele Basile - */ - -#ifndef CFG_I2C_H -#define CFG_I2C_H - -/** -*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 */ - -