Merge pull request #1464 from alignan/pull/minor-fixes
Minor fixes to file descriptions and disable DEBUG switches
This commit is contained in:
commit
66719ef2e2
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue