1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/nucleo-f439zi: add initial ADC support

This commit is contained in:
krzysztof-cabaj 2024-08-16 10:00:23 +02:00
parent 3d5582d563
commit 7f97c2143e
2 changed files with 5 additions and 0 deletions

View File

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

View File

@ -198,6 +198,10 @@ static const eth_conf_t eth_config = {
#define ETH_DMA_ISR isr_dma2_stream0
/** @} */
static const adc_conf_t adc_config[] = {{}};
#define ADC_NUMOF ARRAY_SIZE(adc_config)
#ifdef __cplusplus
}
#endif