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
* Driver for the external BMP085 digital pressure and temperature sensor
* Test file for the BMP085 digital pressure and temperature sensor
*
* \author
* Antonio Lignan <alinan@zolertia.com>

View File

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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

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