From 4e8c979e7d4dfbb33ba3b82150c47187605bf617 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20H=C3=BC=C3=9Fler?= Date: Sun, 20 Feb 2022 09:44:41 +0100 Subject: [PATCH] boards/nucleo-f767zi: fix adc_config indentation --- boards/nucleo-f767zi/include/periph_conf.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/boards/nucleo-f767zi/include/periph_conf.h b/boards/nucleo-f767zi/include/periph_conf.h index fa57be1338..413af7e7f9 100644 --- a/boards/nucleo-f767zi/include/periph_conf.h +++ b/boards/nucleo-f767zi/include/periph_conf.h @@ -198,12 +198,12 @@ static const eth_conf_t eth_config = { * @{ */ static const adc_conf_t adc_config[] = { - {GPIO_PIN(PORT_A, 3), 2, 3}, - {GPIO_PIN(PORT_C, 0), 2, 10}, - {GPIO_PIN(PORT_C, 3), 2, 13}, - {GPIO_PIN(PORT_F, 3), 2, 9}, - {GPIO_PIN(PORT_F, 5), 2, 15}, - {GPIO_PIN(PORT_F, 10), 2, 8}, + {GPIO_PIN(PORT_A, 3), 2, 3}, + {GPIO_PIN(PORT_C, 0), 2, 10}, + {GPIO_PIN(PORT_C, 3), 2, 13}, + {GPIO_PIN(PORT_F, 3), 2, 9}, + {GPIO_PIN(PORT_F, 5), 2, 15}, + {GPIO_PIN(PORT_F, 10), 2, 8}, }; #define ADC_NUMOF ARRAY_SIZE(adc_config)