mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
75 lines
1.5 KiB
C
75 lines
1.5 KiB
C
/*
|
|
* Copyright (C) 2017 HAW Hamburg
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup drivers_tmp006
|
|
*
|
|
* @{
|
|
* @file
|
|
* @brief Default configuration for TMP006 devices
|
|
*
|
|
* @author Sebastian Meiling <s@mlng.net>
|
|
*/
|
|
|
|
#ifndef TMP006_PARAMS_H
|
|
#define TMP006_PARAMS_H
|
|
|
|
#include "board.h"
|
|
#include "tmp006.h"
|
|
#include "saul_reg.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @name Set default configuration parameters for the TMP006 driver
|
|
* @{
|
|
*/
|
|
#ifndef TMP006_PARAM_I2C
|
|
#define TMP006_PARAM_I2C I2C_DEV(0)
|
|
#endif
|
|
#ifndef TMP006_PARAM_ADDR
|
|
#define TMP006_PARAM_ADDR (TMP006_I2C_ADDRESS)
|
|
#endif
|
|
#ifndef TMP006_PARAM_RATE
|
|
#define TMP006_PARAM_RATE TMP006_CONFIG_CR_DEF
|
|
#endif
|
|
|
|
#define TMP006_PARAMS_DEFAULT { .i2c = TMP006_PARAM_I2C, \
|
|
.addr = TMP006_PARAM_ADDR, \
|
|
.rate = TMP006_PARAM_RATE }
|
|
/**@}*/
|
|
|
|
/**
|
|
* @brief HDC1000 configuration
|
|
*/
|
|
static const tmp006_params_t tmp006_params[] =
|
|
{
|
|
#ifdef TMP006_PARAMS_BOARD
|
|
TMP006_PARAMS_BOARD,
|
|
#else
|
|
TMP006_PARAMS_DEFAULT,
|
|
#endif
|
|
};
|
|
|
|
/**
|
|
* @brief Additional meta information to keep in the SAUL registry
|
|
*/
|
|
static const saul_reg_info_t tmp006_saul_info[] =
|
|
{
|
|
{ .name = "tmp006" }
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* TMP006_PARAMS_H */
|
|
/** @} */
|