diff options
Diffstat (limited to 'testex/STM32/STM32F3xx/I2C-LSM303DLHC/main.c')
-rw-r--r-- | testex/STM32/STM32F3xx/I2C-LSM303DLHC/main.c | 3 |
1 files changed, 1 insertions, 2 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);
|