mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 04:52:59 +01:00
drivers/apa102: use new driver params scheme
This commit is contained in:
parent
8a6bed72bd
commit
a67c2cb707
@ -39,9 +39,11 @@ extern "C" {
|
|||||||
#define APA102_PARAM_CLK_PIN (GPIO_PIN(0, 1))
|
#define APA102_PARAM_CLK_PIN (GPIO_PIN(0, 1))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define APA102_PARAMS_DEFAULT { .led_numof = APA102_PARAM_LED_NUMOF, \
|
#ifndef APA102_PARAMS
|
||||||
|
#define APA102_PARAMS { .led_numof = APA102_PARAM_LED_NUMOF, \
|
||||||
.data_pin = APA102_PARAM_DATA_PIN, \
|
.data_pin = APA102_PARAM_DATA_PIN, \
|
||||||
.clk_pin = APA102_PARAM_CLK_PIN }
|
.clk_pin = APA102_PARAM_CLK_PIN }
|
||||||
|
#endif
|
||||||
/**@}*/
|
/**@}*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -49,11 +51,7 @@ extern "C" {
|
|||||||
*/
|
*/
|
||||||
static const apa102_params_t apa102_params[] =
|
static const apa102_params_t apa102_params[] =
|
||||||
{
|
{
|
||||||
#ifdef APA102_PARAMS_BOARD
|
APA102_PARAMS
|
||||||
APA102_PARAMS_BOARD,
|
|
||||||
#else
|
|
||||||
APA102_PARAMS_DEFAULT,
|
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
Loading…
Reference in New Issue
Block a user