mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
71 lines
1.3 KiB
C
71 lines
1.3 KiB
C
/*
|
|
* Copyright (C) 2017 Frits Kuipers
|
|
*
|
|
* 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_ds18
|
|
*
|
|
* @{
|
|
* @file
|
|
* @brief Default configuration for DS1822 and DS18B20 temperature sensors
|
|
*
|
|
* @author Frits Kuipers <frits.kuipers@gmail.com>
|
|
*/
|
|
|
|
#ifndef DS18_PARAMS_H
|
|
#define DS18_PARAMS_H
|
|
|
|
#include "board.h"
|
|
#include "ds18.h"
|
|
#include "saul_reg.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief Set default configuration parameters for the ds18
|
|
* @{
|
|
*/
|
|
#ifndef DS18_PARAM_PIN
|
|
#define DS18_PARAM_PIN (GPIO_PIN(0, 0))
|
|
#endif
|
|
#ifndef DS18_PARAM_PULL
|
|
#define DS18_PARAM_PULL (GPIO_OD_PU)
|
|
#endif
|
|
|
|
#define DS18_PARAMS_DEFAULT { .pin = DS18_PARAM_PIN, \
|
|
.out_mode = DS18_PARAM_PULL }
|
|
/**@}*/
|
|
|
|
/**
|
|
* @brief Configure ds18
|
|
*/
|
|
static const ds18_params_t ds18_params[] =
|
|
{
|
|
#ifdef DS18_PARAMS_BOARD
|
|
DS18_PARAMS_BOARD,
|
|
#else
|
|
DS18_PARAMS_DEFAULT,
|
|
#endif
|
|
};
|
|
|
|
/**
|
|
* @brief Configure SAUL registry entries
|
|
*/
|
|
static const saul_reg_info_t ds18_saul_reg_info[] =
|
|
{
|
|
{ .name = "ds18" }
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* DS18_PARAMS_H */
|
|
/** @} */
|