mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
boards/nucleo-l152re: declare adc_config[] directly in periph_conf.h
This commit is contained in:
parent
790b9f5b1a
commit
cbd60b68a3
@ -236,16 +236,16 @@ static const i2c_conf_t i2c_config[] = {
|
||||
* @name ADC configuration
|
||||
* @{
|
||||
*/
|
||||
#define ADC_CONFIG { \
|
||||
{ GPIO_PIN(PORT_A, 0), 0 }, \
|
||||
{ GPIO_PIN(PORT_A, 1), 1 }, \
|
||||
{ GPIO_PIN(PORT_A, 4), 4 }, \
|
||||
{ GPIO_PIN(PORT_B, 0), 8 }, \
|
||||
{ GPIO_PIN(PORT_C, 1), 11 }, \
|
||||
{ GPIO_PIN(PORT_C, 0), 10 }, \
|
||||
}
|
||||
static const adc_conf_t adc_config[] = {
|
||||
{ GPIO_PIN(PORT_A, 0), 0 },
|
||||
{ GPIO_PIN(PORT_A, 1), 1 },
|
||||
{ GPIO_PIN(PORT_A, 4), 4 },
|
||||
{ GPIO_PIN(PORT_B, 0), 8 },
|
||||
{ GPIO_PIN(PORT_C, 1), 11 },
|
||||
{ GPIO_PIN(PORT_C, 0), 10 },
|
||||
};
|
||||
|
||||
#define ADC_NUMOF (6U)
|
||||
#define ADC_NUMOF ARRAY_SIZE(adc_config)
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user