From ccdc24bfd1edd2bd0d8a11bec8c6c782c69dcdfd Mon Sep 17 00:00:00 2001 From: Rocco Marco Guglielmi Date: Fri, 9 Mar 2018 08:06:25 +0000 Subject: Cosmetic changes to LSM303DLHC demos git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11656 110e8d01-0319-4d1e-a829-52ad28d1bb01 --- testex/STM32/STM32F3xx/I2C-LSM303DLHC/main.c | 21 ++++++--------------- 1 file changed, 6 insertions(+), 15 deletions(-) (limited to 'testex/STM32/STM32F3xx/I2C-LSM303DLHC/main.c') diff --git a/testex/STM32/STM32F3xx/I2C-LSM303DLHC/main.c b/testex/STM32/STM32F3xx/I2C-LSM303DLHC/main.c index 566078a8e..12dd9b9e3 100644 --- a/testex/STM32/STM32F3xx/I2C-LSM303DLHC/main.c +++ b/testex/STM32/STM32F3xx/I2C-LSM303DLHC/main.c @@ -102,29 +102,20 @@ 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. - */ + /* Creates the blinker thread.*/ chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL); - /* - * LSM303DLHC Object Initialization - */ + + /* LSM303DLHC Object Initialization.*/ lsm303dlhcObjectInit(&LSM303DLHCD1); - /* - * Activates the LSM303DLHC driver. - */ + /* Activates the LSM303DLHC driver.*/ lsm303dlhcStart(&LSM303DLHCD1, &lsm303dlhccfg); - /* - * Normal main() thread activity, printing MEMS data on the serial driver 1. - */ + /* Normal main() thread activity, printing MEMS data on the SD1. */ while (true) { lsm303dlhcAccelerometerReadRaw(&LSM303DLHCD1, accraw); chprintf(chp, "LSM303DLHC Accelerometer raw data...\r\n"); -- cgit v1.2.3