diff options
author | Rocco Marco Guglielmi <roccomarco.guglielmi@gmail.com> | 2018-03-09 23:34:02 +0000 |
---|---|---|
committer | Rocco Marco Guglielmi <roccomarco.guglielmi@gmail.com> | 2018-03-09 23:34:02 +0000 |
commit | 33a3ccc373d06a454a5fb4e107b1df466c08677b (patch) | |
tree | 9437ae6ce76c420d067eaa19b63b2995d87e3274 | |
parent | 610290753dff711fca3c84f50877b2ca0e921d01 (diff) | |
download | ChibiOS-33a3ccc373d06a454a5fb4e107b1df466c08677b.tar.gz ChibiOS-33a3ccc373d06a454a5fb4e107b1df466c08677b.tar.bz2 ChibiOS-33a3ccc373d06a454a5fb4e107b1df466c08677b.zip |
Cosmetic changes
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11676 110e8d01-0319-4d1e-a829-52ad28d1bb01
-rw-r--r-- | testex/STM32/STM32F3xx/I2C-LSM303DLHC/main.c | 3 | ||||
-rw-r--r-- | testex/STM32/STM32F4xx/I2C-LSM303DLHC/main.c | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/testex/STM32/STM32F3xx/I2C-LSM303DLHC/main.c b/testex/STM32/STM32F3xx/I2C-LSM303DLHC/main.c index 12dd9b9e3..5720547c5 100644 --- a/testex/STM32/STM32F3xx/I2C-LSM303DLHC/main.c +++ b/testex/STM32/STM32F3xx/I2C-LSM303DLHC/main.c @@ -102,13 +102,12 @@ int main(void) { halInit();
chSysInit();
- /* Activates the serial driver 1 using the driver default configuration. */
+ /* Activates the serial driver 1 using the driver default configuration.*/
sdStart(&SD1, NULL);
/* Creates the blinker thread.*/
chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
-
/* LSM303DLHC Object Initialization.*/
lsm303dlhcObjectInit(&LSM303DLHCD1);
diff --git a/testex/STM32/STM32F4xx/I2C-LSM303DLHC/main.c b/testex/STM32/STM32F4xx/I2C-LSM303DLHC/main.c index bd84f00f9..15b530064 100644 --- a/testex/STM32/STM32F4xx/I2C-LSM303DLHC/main.c +++ b/testex/STM32/STM32F4xx/I2C-LSM303DLHC/main.c @@ -127,7 +127,7 @@ int main(void) { /* Activates the LSM303DLHC driver.*/
lsm303dlhcStart(&LSM303DLHCD1, &lsm303dlhccfg);
- /* Normal main() thread activity, printing MEMS data on the SDU1. */
+ /* Normal main() thread activity, printing MEMS data on the SDU1.*/
while (true) {
lsm303dlhcAccelerometerReadRaw(&LSM303DLHCD1, accraw);
chprintf(chp, "LSM303DLHC Accelerometer raw data...\r\n");
|