Merge pull request #1464 from alignan/pull/minor-fixes

Minor fixes to file descriptions and disable DEBUG switches
This commit is contained in:
Antonio Lignan 2016-01-17 22:38:37 +01:00
commit 66719ef2e2
7 changed files with 9 additions and 9 deletions

View file

@ -38,7 +38,7 @@
* @{ * @{
* *
* \file * \file
* Driver for the external BMP085 digital pressure and temperature sensor * Test file for the BMP085 digital pressure and temperature sensor
* *
* \author * \author
* Antonio Lignan <alinan@zolertia.com> * Antonio Lignan <alinan@zolertia.com>

View file

@ -38,7 +38,7 @@
* @{ * @{
* *
* \file * \file
* Driver for the external TSL2563 light sensor * Test file for the external TSL2563 light sensor
* *
* \author * \author
* Antonio Lignan <alinan@zolertia.com> * Antonio Lignan <alinan@zolertia.com>

View file

@ -32,7 +32,7 @@
* \addtogroup zoul-bmp085-sensor * \addtogroup zoul-bmp085-sensor
* @{ * @{
* *
* BMP085 driver implementation, calculations taken from Inga sensor driver * BMP085 driver implementation
* *
* \file * \file
* Driver for the external BMP085 light sensor * Driver for the external BMP085 light sensor
@ -48,7 +48,7 @@
#include "lib/sensors.h" #include "lib/sensors.h"
#include "bmp085.h" #include "bmp085.h"
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
#define DEBUG 1 #define DEBUG 0
#if DEBUG #if DEBUG
#define PRINTF(...) printf(__VA_ARGS__) #define PRINTF(...) printf(__VA_ARGS__)
#else #else

View file

@ -49,7 +49,7 @@
#include "dev/gpio.h" #include "dev/gpio.h"
#include "dev/ioc.h" #include "dev/ioc.h"
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
#define DEBUG 1 #define DEBUG 0
#if DEBUG #if DEBUG
#define PRINTF(...) printf(__VA_ARGS__) #define PRINTF(...) printf(__VA_ARGS__)
#else #else

View file

@ -45,8 +45,8 @@
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
#include "lib/sensors.h" #include "lib/sensors.h"
/* -------------------------------------------------------------------------- */ /* -------------------------------------------------------------------------- */
#ifndef SHT25_H_ #ifndef MOTION_SENSOR_H_
#define SHT25_H_ #define MOTION_SENSOR_H_
/* -------------------------------------------------------------------------- */ /* -------------------------------------------------------------------------- */
/** /**
* \name Motion sensor return and operation values * \name Motion sensor return and operation values

View file

@ -46,7 +46,7 @@
#include "dev/sht25.h" #include "dev/sht25.h"
#include "lib/sensors.h" #include "lib/sensors.h"
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
#define DEBUG 1 #define DEBUG 0
#if DEBUG #if DEBUG
#define PRINTF(...) printf(__VA_ARGS__) #define PRINTF(...) printf(__VA_ARGS__)
#else #else

View file

@ -38,7 +38,7 @@
* @{ * @{
* *
* \file * \file
* SHT25 temperature and humidity sensor driver * SHT25 temperature and humidity sensor driver header file
* \author * \author
* Antonio Lignan <alinan@zolertia.com> * Antonio Lignan <alinan@zolertia.com>
*/ */