1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/drivers/dcf77/include/dcf77_params.h
2019-11-22 10:27:01 +01:00

59 lines
1.1 KiB
C

/*
* Copyright (C) 2019 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_dcf77
*
* @{
* @file
* @brief Default configuration for DCF77 devices
*
* @author Michel Gerlach <michel.gerlach@haw-hamburg.de>
*/
#ifndef DCF77_PARAMS_H
#define DCF77_PARAMS_H
#include "board.h"
#include "dcf77.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @name Set default configuration parameters for the DCF77 devices
* @{
*/
#ifndef DCF77_PARAM_PIN
#define DCF77_PARAM_PIN (GPIO_PIN(1, 22))
#endif
#ifndef DCF77_PARAM_PULL
#define DCF77_PARAM_PULL (GPIO_IN)
#endif
#ifndef DCF77_PARAMS
#define DCF77_PARAMS { .pin = DCF77_PARAM_PIN, \
.in_mode = DCF77_PARAM_PULL }
#endif
/**@}*/
/**
* @brief Configure DCF77 devices
*/
static const dcf77_params_t dcf77_params[] =
{
DCF77_PARAMS
};
#ifdef __cplusplus
}
#endif
#endif /* DCF77_PARAMS_H */
/** @} */