diff options
author | Rocco Marco Guglielmi <roccomarco.guglielmi@live.com> | 2016-03-06 18:17:28 +0000 |
---|---|---|
committer | Rocco Marco Guglielmi <roccomarco.guglielmi@live.com> | 2016-03-06 18:17:28 +0000 |
commit | 7d6f337b8cb2c311a6adcd811e362bc5bd918291 (patch) | |
tree | cc8bd34e6c5cc88e12d32ff4d92f37ba7481ea77 /testhal/STM32/STM32L4xx/SPI-L3GD20/main.c | |
parent | 2eef164c17fbddd23fff2b83cd49d03b9577fdcd (diff) | |
download | ChibiOS-7d6f337b8cb2c311a6adcd811e362bc5bd918291.tar.gz ChibiOS-7d6f337b8cb2c311a6adcd811e362bc5bd918291.tar.bz2 ChibiOS-7d6f337b8cb2c311a6adcd811e362bc5bd918291.zip |
EX hierarchy re-organized,
Improved documentation for L3GD20 related files,
SPI-L3GD20 demo updated,
Minor indent fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9043 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32L4xx/SPI-L3GD20/main.c')
-rw-r--r-- | testhal/STM32/STM32L4xx/SPI-L3GD20/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testhal/STM32/STM32L4xx/SPI-L3GD20/main.c b/testhal/STM32/STM32L4xx/SPI-L3GD20/main.c index 6ceb84297..b07e384ce 100644 --- a/testhal/STM32/STM32L4xx/SPI-L3GD20/main.c +++ b/testhal/STM32/STM32L4xx/SPI-L3GD20/main.c @@ -48,8 +48,8 @@ static L3GD20Config l3gd20cfg = { L3GD20_FS_250DPS, /* Full scale value */
L3GD20_ODR_760HZ_FC_100, /* Output data rate */
L3GD20_AE_XYZ, /* Enabled axes */
- L3GD20_END_LITTLE, /* Endianness */
- L3GD20_BDU_BLOCKED /* Block data update */
+ L3GD20_BDU_BLOCKED, /* Block data update */
+ L3GD20_END_LITTLE /* Endianness */
};
/*
|