From b28c62685d857b55dd8bc7e759a9f93ab0a51632 Mon Sep 17 00:00:00 2001 From: Rocco Marco Guglielmi Date: Sun, 14 Jan 2018 11:19:39 +0000 Subject: Updated EX demos to be compliant with latest ChibiOS/HAL edit git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11273 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- testex/STM32/STM32F4xx/I2C-BMP085/main.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'testex/STM32/STM32F4xx/I2C-BMP085/main.c') diff --git a/testex/STM32/STM32F4xx/I2C-BMP085/main.c b/testex/STM32/STM32F4xx/I2C-BMP085/main.c index 5f2b657dc..1b1e0533f 100644 --- a/testex/STM32/STM32F4xx/I2C-BMP085/main.c +++ b/testex/STM32/STM32F4xx/I2C-BMP085/main.c @@ -46,25 +46,25 @@ static float cookeddata[BMP085_BARO_NUMBER_OF_AXES + * @brief I2C configuration structure. */ static const I2CConfig i2cConfig = { - OPMODE_I2C, /* I2C inetrface peration mode. */ - 400000, /* I2C interface clock speed. */ - FAST_DUTY_CYCLE_2, /* I2C interface duty cycle mode. */ + OPMODE_I2C, + 400000, + FAST_DUTY_CYCLE_2, }; /** * @brief BMP085 configuration structure. */ static const BMP085Config bmp085Config = { - &I2CD1, /* I2C Driver pointer. */ - &i2cConfig, /* I2C Driver configuration. */ - NULL, /* Sensibility. */ - NULL, /* bias. */ - NULL, /* Output data rate. */ -#if BMP085_USE_ADVANCED || defined(__DOXYGEN__) - BMP085_BARO_CT_LOW, /* Pressure conversion time. */ - BMP085_BARO_MODE_LOW, /* BMP085 Mode. */ - BMP085_BARO_OSS_0, /* Oversempling setting. */ - BMP085_THERMO_CT_LOW, /* Temperature conversion time */ + &I2CD1, + &i2cConfig, + NULL, + NULL, + NULL, +#if BMP085_USE_ADVANCED + BMP085_BARO_CT_LOW, + BMP085_BARO_MODE_LOW, + BMP085_BARO_OSS_0, + BMP085_THERMO_CT_LOW, #endif }; -- cgit v1.2.3