diff options
author | Rocco Marco Guglielmi <roccomarco.guglielmi@live.com> | 2016-07-28 14:53:44 +0000 |
---|---|---|
committer | Rocco Marco Guglielmi <roccomarco.guglielmi@live.com> | 2016-07-28 14:53:44 +0000 |
commit | daedf9889b3140fb146a58dbafb48b2018ed9301 (patch) | |
tree | 9473d7215a2b4dc55f0eaf7401add9e269ac923f /testhal/STM32/STM32F4xx/I2C-LSM303DLHC/main.c | |
parent | be45af2a10460c65ef86ebec459a3d517a8af7d6 (diff) | |
download | ChibiOS-daedf9889b3140fb146a58dbafb48b2018ed9301.tar.gz ChibiOS-daedf9889b3140fb146a58dbafb48b2018ed9301.tar.bz2 ChibiOS-daedf9889b3140fb146a58dbafb48b2018ed9301.zip |
Fixed typos in EX demos.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9729 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32F4xx/I2C-LSM303DLHC/main.c')
-rw-r--r-- | testhal/STM32/STM32F4xx/I2C-LSM303DLHC/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testhal/STM32/STM32F4xx/I2C-LSM303DLHC/main.c b/testhal/STM32/STM32F4xx/I2C-LSM303DLHC/main.c index 0ab38a92c..fb3adc819 100644 --- a/testhal/STM32/STM32F4xx/I2C-LSM303DLHC/main.c +++ b/testhal/STM32/STM32F4xx/I2C-LSM303DLHC/main.c @@ -209,7 +209,7 @@ static void cmd_fullscale(BaseSequentialStream *chp, int argc, char *argv[]) { }
else if(!strcmp (argv[1], "16G")) {
accelerometerSetFullScale(&LSM303DLHCD1, LSM303DLHC_ACC_FS_16G);
- chprintf(chp, "LSM303DLHC Accelerometer full scale set to 4G...\r\n");
+ chprintf(chp, "LSM303DLHC Accelerometer full scale set to 16G...\r\n");
}
else {
chprintf(chp, "Usage: fullscale acc [2G|4G|8G|16G]\r\n");
|