1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-28 07:51:19 +01:00

boards/nucleo-l432kc: enabling ADC feature

This commit is contained in:
krzysztof-cabaj 2025-05-05 18:07:10 +02:00
parent 168799cc78
commit d79ec155ce
2 changed files with 5 additions and 0 deletions

View File

@ -2,6 +2,7 @@ CPU = stm32
CPU_MODEL = stm32l432kc
# Put defined MCU peripherals here (in alphabetical order)
FEATURES_PROVIDED += periph_adc
FEATURES_PROVIDED += periph_can
FEATURES_PROVIDED += periph_i2c
FEATURES_PROVIDED += periph_pwm

View File

@ -115,6 +115,10 @@ static const spi_conf_t spi_config[] = {
#define SPI_NUMOF ARRAY_SIZE(spi_config)
/** @} */
static const adc_conf_t adc_config[] = {{}};
#define ADC_NUMOF ARRAY_SIZE(adc_config)
#ifdef __cplusplus
}
#endif