From ac07e848b72be1a225cc1784e0ff20dfbe13458c Mon Sep 17 00:00:00 2001 From: Antonio Lignan Date: Sun, 17 Jan 2016 21:52:34 +0100 Subject: [PATCH] Minor fixes to file descriptions and disable DEBUG switches --- examples/zolertia/zoul/test-bmp085.c | 2 +- examples/zolertia/zoul/test-tsl2563.c | 2 +- platform/zoul/dev/bmp085.c | 4 ++-- platform/zoul/dev/motion-sensor.c | 2 +- platform/zoul/dev/motion-sensor.h | 4 ++-- platform/zoul/dev/sht25.c | 2 +- platform/zoul/dev/sht25.h | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/examples/zolertia/zoul/test-bmp085.c b/examples/zolertia/zoul/test-bmp085.c index 4f19fd993..6fcabedf8 100644 --- a/examples/zolertia/zoul/test-bmp085.c +++ b/examples/zolertia/zoul/test-bmp085.c @@ -38,7 +38,7 @@ * @{ * * \file - * Driver for the external BMP085 digital pressure and temperature sensor + * Test file for the BMP085 digital pressure and temperature sensor * * \author * Antonio Lignan diff --git a/examples/zolertia/zoul/test-tsl2563.c b/examples/zolertia/zoul/test-tsl2563.c index b80a76eaf..b6296b3e5 100644 --- a/examples/zolertia/zoul/test-tsl2563.c +++ b/examples/zolertia/zoul/test-tsl2563.c @@ -38,7 +38,7 @@ * @{ * * \file - * Driver for the external TSL2563 light sensor + * Test file for the external TSL2563 light sensor * * \author * Antonio Lignan diff --git a/platform/zoul/dev/bmp085.c b/platform/zoul/dev/bmp085.c index 4fed7f496..f7c8da82f 100644 --- a/platform/zoul/dev/bmp085.c +++ b/platform/zoul/dev/bmp085.c @@ -32,7 +32,7 @@ * \addtogroup zoul-bmp085-sensor * @{ * - * BMP085 driver implementation, calculations taken from Inga sensor driver + * BMP085 driver implementation * * \file * Driver for the external BMP085 light sensor @@ -48,7 +48,7 @@ #include "lib/sensors.h" #include "bmp085.h" /*---------------------------------------------------------------------------*/ -#define DEBUG 1 +#define DEBUG 0 #if DEBUG #define PRINTF(...) printf(__VA_ARGS__) #else diff --git a/platform/zoul/dev/motion-sensor.c b/platform/zoul/dev/motion-sensor.c index eb685d27a..178267edf 100644 --- a/platform/zoul/dev/motion-sensor.c +++ b/platform/zoul/dev/motion-sensor.c @@ -49,7 +49,7 @@ #include "dev/gpio.h" #include "dev/ioc.h" /*---------------------------------------------------------------------------*/ -#define DEBUG 1 +#define DEBUG 0 #if DEBUG #define PRINTF(...) printf(__VA_ARGS__) #else diff --git a/platform/zoul/dev/motion-sensor.h b/platform/zoul/dev/motion-sensor.h index ce712cbde..c52597a24 100644 --- a/platform/zoul/dev/motion-sensor.h +++ b/platform/zoul/dev/motion-sensor.h @@ -45,8 +45,8 @@ /*---------------------------------------------------------------------------*/ #include "lib/sensors.h" /* -------------------------------------------------------------------------- */ -#ifndef SHT25_H_ -#define SHT25_H_ +#ifndef MOTION_SENSOR_H_ +#define MOTION_SENSOR_H_ /* -------------------------------------------------------------------------- */ /** * \name Motion sensor return and operation values diff --git a/platform/zoul/dev/sht25.c b/platform/zoul/dev/sht25.c index 38a8be12e..6273ae0c0 100644 --- a/platform/zoul/dev/sht25.c +++ b/platform/zoul/dev/sht25.c @@ -46,7 +46,7 @@ #include "dev/sht25.h" #include "lib/sensors.h" /*---------------------------------------------------------------------------*/ -#define DEBUG 1 +#define DEBUG 0 #if DEBUG #define PRINTF(...) printf(__VA_ARGS__) #else diff --git a/platform/zoul/dev/sht25.h b/platform/zoul/dev/sht25.h index 602dd1331..11d5c61a8 100644 --- a/platform/zoul/dev/sht25.h +++ b/platform/zoul/dev/sht25.h @@ -38,7 +38,7 @@ * @{ * * \file - * SHT25 temperature and humidity sensor driver + * SHT25 temperature and humidity sensor driver header file * \author * Antonio Lignan */