mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
121 lines
2.8 KiB
C
121 lines
2.8 KiB
C
/*
|
|
* Copyright (C) 2017 OTA keys S.A.
|
|
*
|
|
* 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_adcxx1c
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Default configuration for ADCXX1C devices
|
|
*
|
|
* @author Vincent Dupont <vincent@otakeys.com>
|
|
* @}
|
|
*/
|
|
|
|
#ifndef ADCXX1C_PARAMS_H
|
|
#define ADCXX1C_PARAMS_H
|
|
|
|
#include "board.h"
|
|
#include "saul_reg.h"
|
|
#include "adcxx1c.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @defgroup drivers_adcxx1c_config ADCXX1C driver compile configurations
|
|
* @ingroup drivers_adcxx1c
|
|
* @ingroup config_drivers_sensors
|
|
* @{
|
|
*/
|
|
|
|
/** @brief I2C device to use */
|
|
#ifndef ADCXX1C_PARAM_I2C
|
|
#define ADCXX1C_PARAM_I2C (I2C_DEV(0))
|
|
#endif
|
|
|
|
/** @brief I2C address */
|
|
#ifndef ADCXX1C_PARAM_ADDR
|
|
#define ADCXX1C_PARAM_ADDR (ADCXX1C_I2C_ADDRESS)
|
|
#endif
|
|
|
|
/** @brief Resolution in bits */
|
|
#ifndef ADCXX1C_PARAM_BITS
|
|
#define ADCXX1C_PARAM_BITS (ADCXX1C_RES_DEFAULT)
|
|
#endif
|
|
|
|
/** @brief Conversion interval */
|
|
#ifndef ADCXX1C_PARAM_CYCLE
|
|
#define ADCXX1C_PARAM_CYCLE (ADCXX1C_CYCLE_DISABLED)
|
|
#endif
|
|
|
|
/** @brief Alert gpio pin */
|
|
#ifndef ADCXX1C_PARAM_ALERT_PIN
|
|
#define ADCXX1C_PARAM_ALERT_PIN (GPIO_UNDEF)
|
|
#endif
|
|
|
|
/** @brief Low limit for the alert */
|
|
#ifndef ADCXX1C_PARAM_LOW_LIMIT
|
|
#define ADCXX1C_PARAM_LOW_LIMIT (0)
|
|
#endif
|
|
|
|
/** @brief High limit for the alert */
|
|
#ifndef ADCXX1C_PARAM_HIGH_LIMIT
|
|
#define ADCXX1C_PARAM_HIGH_LIMIT (0)
|
|
#endif
|
|
|
|
/** @brief Hysteresis for the alert */
|
|
#ifndef ADCXX1C_PARAM_HYSTERESIS
|
|
#define ADCXX1C_PARAM_HYSTERESIS (0)
|
|
#endif
|
|
/** @} */
|
|
|
|
/**
|
|
* @brief ADCXX1C driver configuration structures
|
|
*/
|
|
#ifndef ADCXX1C_PARAMS
|
|
#define ADCXX1C_PARAMS { .i2c = ADCXX1C_PARAM_I2C, \
|
|
.addr = ADCXX1C_PARAM_ADDR, \
|
|
.bits = ADCXX1C_PARAM_BITS, \
|
|
.cycle = ADCXX1C_PARAM_CYCLE, \
|
|
.alert_pin = ADCXX1C_PARAM_ALERT_PIN, \
|
|
.low_limit = ADCXX1C_PARAM_LOW_LIMIT, \
|
|
.high_limit = ADCXX1C_PARAM_HIGH_LIMIT, \
|
|
.hysteresis = ADCXX1C_PARAM_HYSTERESIS }
|
|
#endif
|
|
|
|
/**
|
|
* @brief ADCXX1C driver SAUL registry information structures
|
|
*/
|
|
#ifndef ADCXX1C_SAUL_INFO
|
|
#define ADCXX1C_SAUL_INFO { .name = "adcxx1c" }
|
|
#endif
|
|
|
|
/**
|
|
* @brief ADCXX1C configuration
|
|
*/
|
|
static const adcxx1c_params_t adcxx1c_params[] =
|
|
{
|
|
ADCXX1C_PARAMS
|
|
};
|
|
|
|
/**
|
|
* @brief Additional meta information to keep in the SAUL registry
|
|
*/
|
|
static const saul_reg_info_t adcxx1c_saul_info[] =
|
|
{
|
|
ADCXX1C_SAUL_INFO
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ADCXX1C_PARAMS_H */
|