2020-06-08 11:25:38 +02:00
|
|
|
CPU_FAM = esp32
|
|
|
|
|
2019-12-12 13:46:20 +01:00
|
|
|
# MCU defined features that are provided independent on board definitions
|
|
|
|
|
|
|
|
include $(RIOTCPU)/esp_common/Makefile.features
|
|
|
|
|
2018-05-04 15:44:29 +02:00
|
|
|
FEATURES_PROVIDED += arch_esp32
|
2019-08-16 15:47:12 +02:00
|
|
|
FEATURES_PROVIDED += esp_wifi_enterprise
|
2020-03-09 17:53:46 +01:00
|
|
|
FEATURES_PROVIDED += periph_adc_ctrl
|
2022-02-17 11:08:11 +01:00
|
|
|
FEATURES_PROVIDED += puf_sram
|
2021-11-18 17:17:04 +01:00
|
|
|
|
2021-11-30 10:35:16 +01:00
|
|
|
ifneq (,$(filter esp32-wrover%,$(CPU_MODEL)))
|
|
|
|
FEATURES_PROVIDED += esp_spi_ram
|
|
|
|
endif
|
|
|
|
|
2021-11-18 17:17:04 +01:00
|
|
|
# This configuration enables modules that are only available when using Kconfig
|
|
|
|
# module modelling
|
|
|
|
ifeq (1, $(TEST_KCONFIG))
|
|
|
|
KCONFIG_ADD_CONFIG += $(RIOTCPU)/esp32/esp32.config
|
|
|
|
endif
|