aboutsummaryrefslogtreecommitdiffstats
path: root/testex/STM32/STM32F4xx/I2C-LIS3MLD
diff options
context:
space:
mode:
authorRocco Marco Guglielmi <roccomarco.guglielmi@gmail.com>2018-01-14 11:19:39 +0000
committerRocco Marco Guglielmi <roccomarco.guglielmi@gmail.com>2018-01-14 11:19:39 +0000
commitb28c62685d857b55dd8bc7e759a9f93ab0a51632 (patch)
treecc3285cdd4c1b4ec07340784f0c9087efa5c9a02 /testex/STM32/STM32F4xx/I2C-LIS3MLD
parentf6b807fd5a089607a1e21dbcad3c060363650fa1 (diff)
downloadChibiOS-b28c62685d857b55dd8bc7e759a9f93ab0a51632.tar.gz
ChibiOS-b28c62685d857b55dd8bc7e759a9f93ab0a51632.tar.bz2
ChibiOS-b28c62685d857b55dd8bc7e759a9f93ab0a51632.zip
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
Diffstat (limited to 'testex/STM32/STM32F4xx/I2C-LIS3MLD')
-rw-r--r--testex/STM32/STM32F4xx/I2C-LIS3MLD/main.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/testex/STM32/STM32F4xx/I2C-LIS3MLD/main.c b/testex/STM32/STM32F4xx/I2C-LIS3MLD/main.c
index 258bf13cc..0d094a3a5 100644
--- a/testex/STM32/STM32F4xx/I2C-LIS3MLD/main.c
+++ b/testex/STM32/STM32F4xx/I2C-LIS3MLD/main.c
@@ -42,14 +42,14 @@ static const I2CConfig i2ccfg = {
};
static LIS3MDLConfig LIS3MDLcfg = {
- &I2CD1, /* Pointer to I2C Driver.*/
- &i2ccfg, /* Pointer to I2C Configuration.*/
- NULL, /* Use default sensitivity.*/
- NULL, /* Use default bias.*/
- LIS3MDL_SAD_VCC, /* Slave address.*/
- LIS3MDL_FS_4GA, /* Full scale value.*/
- LIS3MDL_ODR_40HZ, /* Output data rate.*/
-#if LIS3MDL_USE_ADVANCED || defined(__DOXYGEN__)
+ &I2CD1,
+ &i2ccfg,
+ NULL,
+ NULL,
+ LIS3MDL_SAD_VCC,
+ LIS3MDL_FS_4GA,
+ LIS3MDL_ODR_40HZ,
+#if LIS3MDL_USE_ADVANCED
LIS3MDL_LP_ENABLED,
LIS3MDL_MD_CONTINUOUS,
LIS3MDL_OMXY_LOW_POWER,