mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
9f31dfe28a
This feature is provided by all esp32_wrover% models, so group it in the common file.
20 lines
546 B
Makefile
20 lines
546 B
Makefile
CPU_MODEL = esp32-wrover
|
|
|
|
# common board and CPU features
|
|
include $(RIOTBOARD)/common/esp32/Makefile.features
|
|
|
|
# additional features provided by the board
|
|
FEATURES_PROVIDED += periph_adc
|
|
FEATURES_PROVIDED += periph_dac
|
|
FEATURES_PROVIDED += periph_i2c
|
|
FEATURES_PROVIDED += periph_pwm
|
|
FEATURES_PROVIDED += periph_spi
|
|
|
|
FEATURES_PROVIDED += arduino
|
|
|
|
# This configuration enables modules that are only available when using Kconfig
|
|
# module modelling
|
|
ifeq (1, $(TEST_KCONFIG))
|
|
KCONFIG_ADD_CONFIG += $(BOARDDIR)/esp32-wemos-lolin-d32-pro.config
|
|
endif
|