1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/drivers/tps6274x/include/tps6274x_params.h
steffen 2ff2b2c1d7 drivers: Initial support for TPS6274x converter
drivers/tps6274x: initial support step-down converter
tests/driver_tps6274x: Added testcase for the step-down converter
boards/jiminy-mega256rfr2: Added TPS6274x config
2019-01-10 00:00:02 +01:00

58 lines
1.2 KiB
C

/*
* Copyright (C) 2018 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_tps6274x
*
* @{
* @file
* @brief Default configuration for TPS6274x DC-DC Converter
*
* @author Peter Kietzmann <peter.kietzmann@haw-hamburg.de>
*/
#ifndef TPS6274X_PARAMS_H
#define TPS6274X_PARAMS_H
#include "board.h"
#include "tps6274x.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @name Set default configuration parameters for the TPS6274x
* @{
*/
#ifndef TPS6274X_PARAMS
#define TPS6274X_PARAMS { .vsel = { GPIO_PIN(0, 0), \
GPIO_PIN(0, 1), \
GPIO_PIN(0, 2), \
GPIO_PIN(0, 3), \
}, \
.ctrl_pin = GPIO_PIN(0, 4) \
}
#endif
/**@}*/
/**
* @brief Configure TPS6274X
*/
static const tps6274x_params_t tps6274x_params[] =
{
TPS6274X_PARAMS
};
#ifdef __cplusplus
}
#endif
#endif /* TPS6274X_PARAMS_H */
/** @} */