mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
boards/nucleo-f042k6: declare adc_config[] directly in periph_conf.h
This commit is contained in:
parent
3c374bb5f3
commit
84f3ec9035
@ -154,15 +154,15 @@ static const spi_conf_t spi_config[] = {
|
|||||||
* @name ADC configuration
|
* @name ADC configuration
|
||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
#define ADC_CONFIG { \
|
static const adc_conf_t adc_config[] = {
|
||||||
{ GPIO_PIN(PORT_A, 0), 0 }, \
|
{ GPIO_PIN(PORT_A, 0), 0 },
|
||||||
{ GPIO_PIN(PORT_A, 1), 1 }, \
|
{ GPIO_PIN(PORT_A, 1), 1 },
|
||||||
{ GPIO_PIN(PORT_A, 3), 3 }, \
|
{ GPIO_PIN(PORT_A, 3), 3 },
|
||||||
{ GPIO_PIN(PORT_A, 4), 4 }, \
|
{ GPIO_PIN(PORT_A, 4), 4 },
|
||||||
{ GPIO_PIN(PORT_A, 7), 7 } \
|
{ GPIO_PIN(PORT_A, 7), 7 }
|
||||||
}
|
};
|
||||||
|
|
||||||
#define ADC_NUMOF (5)
|
#define ADC_NUMOF ARRAY_SIZE(adc_config)
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
Loading…
Reference in New Issue
Block a user