|
|
|
@ -231,9 +231,23 @@ static const spi_conf_t spi_config[] = {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @name ADC configuration |
|
|
|
|
* |
|
|
|
|
* Note that we do not configure all ADC channels, |
|
|
|
|
* and not in the STM32F401 order. Instead, we |
|
|
|
|
* just define 6 ADC channels, for the Nucleo |
|
|
|
|
* Arduino header pins A0-A5 |
|
|
|
|
* |
|
|
|
|
* @{ |
|
|
|
|
*/ |
|
|
|
|
#define ADC_NUMOF (0) |
|
|
|
|
#define ADC_NUMOF (6U) |
|
|
|
|
#define ADC_CONFIG { \ |
|
|
|
|
{GPIO_PIN(PORT_A, 0), 0, 0}, \
|
|
|
|
|
{GPIO_PIN(PORT_A, 1), 0, 1}, \
|
|
|
|
|
{GPIO_PIN(PORT_A, 4), 0, 4}, \
|
|
|
|
|
{GPIO_PIN(PORT_B, 0), 0, 8}, \
|
|
|
|
|
{GPIO_PIN(PORT_C, 1), 0, 11}, \
|
|
|
|
|
{GPIO_PIN(PORT_C, 0), 0, 10}, \
|
|
|
|
|
} |
|
|
|
|
/** @} */ |
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|