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

cpu/esp32: refactor esp_spi_ram feature

This feature is provided by all esp32_wrover% models, so group it in the
common file.
This commit is contained in:
Leandro Lanzieri 2021-11-30 10:35:16 +01:00
parent 63a2b557df
commit 9f31dfe28a
No known key found for this signature in database
GPG Key ID: F4E9A721761C7593
4 changed files with 4 additions and 5 deletions

View File

@ -15,4 +15,3 @@ endif
# unique features provided by the board
FEATURES_PROVIDED += esp_jtag
FEATURES_PROVIDED += esp_spi_ram

View File

@ -10,9 +10,6 @@ FEATURES_PROVIDED += periph_i2c
FEATURES_PROVIDED += periph_pwm
FEATURES_PROVIDED += periph_spi
# unique features provided by the board
FEATURES_PROVIDED += esp_spi_ram
FEATURES_PROVIDED += arduino
# This configuration enables modules that are only available when using Kconfig

View File

@ -11,7 +11,6 @@ FEATURES_PROVIDED += periph_spi
# unique features provided by the board
FEATURES_PROVIDED += sdcard_spi
FEATURES_PROVIDED += esp_spi_ram
FEATURES_PROVIDED += esp_rtc_timer_32k
FEATURES_PROVIDED += arduino

View File

@ -12,6 +12,10 @@ FEATURES_PROVIDED += periph_rtt
FEATURES_PROVIDED += periph_rtt_set_counter
FEATURES_PROVIDED += periph_rtt_overflow
ifneq (,$(filter esp32-wrover%,$(CPU_MODEL)))
FEATURES_PROVIDED += esp_spi_ram
endif
# This configuration enables modules that are only available when using Kconfig
# module modelling
ifeq (1, $(TEST_KCONFIG))