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
|
* \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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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>
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue