boards/nucleo-f767zi: Fix adc pin config in periph_conf.h

(cherry picked from commit ccf31eb15d49ac82369850c8f1129b91727b5bdb)
This commit is contained in:
Stefan Strell 2022-01-24 18:12:25 +01:00 committed by Marian Buschsieweke
parent ec3cc227ab
commit 336fd75c5c
No known key found for this signature in database
GPG Key ID: CB8E3238CE715A94

View File

@ -198,12 +198,12 @@ static const eth_conf_t eth_config = {
* @{ * @{
*/ */
static const adc_conf_t adc_config[] = { static const adc_conf_t adc_config[] = {
{GPIO_PIN(PORT_A, 3), 0, 0}, {GPIO_PIN(PORT_A, 3), 2, 3},
{GPIO_PIN(PORT_C, 0), 0, 1}, {GPIO_PIN(PORT_C, 0), 2, 10},
{GPIO_PIN(PORT_C, 3), 0, 4}, {GPIO_PIN(PORT_C, 3), 2, 13},
{GPIO_PIN(PORT_F, 3), 0, 8}, {GPIO_PIN(PORT_F, 3), 2, 9},
{GPIO_PIN(PORT_F, 5), 0, 11}, {GPIO_PIN(PORT_F, 5), 2, 15},
{GPIO_PIN(PORT_F, 10), 0, 10}, {GPIO_PIN(PORT_F, 10), 2, 8},
}; };
#define ADC_NUMOF ARRAY_SIZE(adc_config) #define ADC_NUMOF ARRAY_SIZE(adc_config)