mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
82 lines
2.1 KiB
C
82 lines
2.1 KiB
C
/*
|
|
* Copyright (C) 2017 Inria
|
|
*
|
|
* 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_dsp0401
|
|
*
|
|
* @{
|
|
* @file
|
|
* @brief Default configuration for DSP0401
|
|
*
|
|
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
|
|
*/
|
|
|
|
#ifndef DSP0401_PARAMS_H
|
|
#define DSP0401_PARAMS_H
|
|
|
|
#include "board.h"
|
|
#include "dsp0401.h"
|
|
#include "periph/gpio.h"
|
|
#include "periph/pwm.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @name Set default configuration parameters for the DSP0401 (for Nucleo-F411RE)
|
|
* @{
|
|
*/
|
|
#ifndef DSP0401_PARAM_SDI_PIN
|
|
#define DSP0401_PARAM_SDI_PIN GPIO_PIN(0, 10) /* D2 */
|
|
#endif
|
|
#ifndef DSP0401_PARAM_CLK_PIN
|
|
#define DSP0401_PARAM_CLK_PIN GPIO_PIN(1, 3) /* D3 */
|
|
#endif
|
|
#ifndef DSP0401_PARAM_LAT_PIN
|
|
#define DSP0401_PARAM_LAT_PIN GPIO_PIN(1, 5) /* D4 */
|
|
#endif
|
|
#ifndef DSP0401_PARAM_PWM_DEV
|
|
#define DSP0401_PARAM_PWM_DEV PWM_DEV(1)
|
|
#endif
|
|
#ifndef DSP0401_PARAM_PWM_CHAN
|
|
#define DSP0401_PARAM_PWM_CHAN (0U)
|
|
#endif
|
|
#ifndef DSP0401_PARAM_BRIGHTNESS
|
|
#define DSP0401_PARAM_BRIGHTNESS (255U)
|
|
#endif
|
|
#ifndef DSP0401_PARAM_MODULE_COUNT
|
|
#define DSP0401_PARAM_MODULE_COUNT (1U)
|
|
#endif
|
|
|
|
#ifndef DSP0401_PARAMS
|
|
#define DSP0401_PARAMS { .sdi = DSP0401_PARAM_SDI_PIN, \
|
|
.clk = DSP0401_PARAM_CLK_PIN, \
|
|
.lat = DSP0401_PARAM_LAT_PIN, \
|
|
.pwm = DSP0401_PARAM_PWM_DEV, \
|
|
.pwm_channel = DSP0401_PARAM_PWM_CHAN, \
|
|
.brightness = DSP0401_PARAM_BRIGHTNESS, \
|
|
.module_count = DSP0401_PARAM_MODULE_COUNT }
|
|
#endif
|
|
/**@}*/
|
|
|
|
/**
|
|
* @brief Configure DSP0401
|
|
*/
|
|
static const dsp0401_params_t dsp0401_params[] =
|
|
{
|
|
DSP0401_PARAMS,
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* DSP0401_PARAMS_H */
|
|
/** @} */
|