Skip to content

Commit

Permalink
Merge pull request #17570 from maribu/backport/2022.01/nucleo_f767zi_…
Browse files Browse the repository at this point in the history
…fix_adc_pin_config

boards/nucleo-f767zi: Fix adc pin config in periph_conf.h [backport 2022.01]
  • Loading branch information
aabadie authored Jan 25, 2022
2 parents ec3cc22 + 336fd75 commit 5db69b4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions boards/nucleo-f767zi/include/periph_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,12 @@ static const eth_conf_t eth_config = {
* @{
*/
static const adc_conf_t adc_config[] = {
{GPIO_PIN(PORT_A, 3), 0, 0},
{GPIO_PIN(PORT_C, 0), 0, 1},
{GPIO_PIN(PORT_C, 3), 0, 4},
{GPIO_PIN(PORT_F, 3), 0, 8},
{GPIO_PIN(PORT_F, 5), 0, 11},
{GPIO_PIN(PORT_F, 10), 0, 10},
{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)
Expand Down

0 comments on commit 5db69b4

Please sign in to comment.