aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/STM32F4xx/SPI-LIS302DL
diff options
context:
space:
mode:
authorRocco Marco Guglielmi <roccomarco.guglielmi@live.com>2016-05-12 21:01:59 +0000
committerRocco Marco Guglielmi <roccomarco.guglielmi@live.com>2016-05-12 21:01:59 +0000
commitf5be820e9c8945c9995a917ede877b588c1cbba2 (patch)
tree8a8479874392a01bd04a568844b2979c30ed9865 /testhal/STM32/STM32F4xx/SPI-LIS302DL
parentfde8d50497ecccbe399ff2f57e5789b487d210b9 (diff)
downloadChibiOS-f5be820e9c8945c9995a917ede877b588c1cbba2.tar.gz
ChibiOS-f5be820e9c8945c9995a917ede877b588c1cbba2.tar.bz2
ChibiOS-f5be820e9c8945c9995a917ede877b588c1cbba2.zip
Fixes an improvements to EX demos
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9471 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32F4xx/SPI-LIS302DL')
-rw-r--r--testhal/STM32/STM32F4xx/SPI-LIS302DL/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testhal/STM32/STM32F4xx/SPI-LIS302DL/main.c b/testhal/STM32/STM32F4xx/SPI-LIS302DL/main.c
index 025789275..429f7b0bb 100644
--- a/testhal/STM32/STM32F4xx/SPI-LIS302DL/main.c
+++ b/testhal/STM32/STM32F4xx/SPI-LIS302DL/main.c
@@ -120,7 +120,7 @@ int main(void) {
accelerometerReadCooked(&LIS302DLD1, cookeddata);
for(i = 0; i < LIS302DL_NUMBER_OF_AXES; i++)
- chprintf(chp, "COOKED-%c:%.3f\r\n", axesID[i], cookeddata[i]);
+ chprintf(chp, "COOKED-%c:%.3f g\r\n", axesID[i], cookeddata[i]);
chThdSleepMilliseconds(150);
#if CHPRINTF_USE_ANSI_CODE