1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-26 06:53:52 +01:00

cpu/esp: Move common dependencies to Makefile.dep

This commit is contained in:
Leandro Lanzieri 2020-03-10 11:01:38 +01:00
parent ea12a6b493
commit 48a62dcc8f
No known key found for this signature in database
GPG Key ID: 39607DE6080007A3
2 changed files with 16 additions and 16 deletions

View File

@ -1,5 +1,21 @@
# additional modules dependencies
# Modules used by ESP*
USEMODULE += esp_common
USEMODULE += esp_common_periph
USEMODULE += esp_freertos
USEMODULE += esp_idf
USEMODULE += log
USEMODULE += newlib
USEMODULE += periph
USEMODULE += periph_hwrng
USEMODULE += periph_flash
USEMODULE += periph_uart
USEMODULE += random
USEMODULE += stdio_uart
USEMODULE += xtensa
# each device has SPI flash memory, but it has to be enabled explicitly
ifneq (,$(filter esp_spiffs,$(USEMODULE)))
USEMODULE += spiffs

View File

@ -49,22 +49,6 @@ PSEUDOMODULES += esp_qemu
PSEUDOMODULES += esp_spiffs
PSEUDOMODULES += esp_wifi_any
# Modules used by ESP*
USEMODULE += esp_common
USEMODULE += esp_common_periph
USEMODULE += esp_freertos
USEMODULE += esp_idf
USEMODULE += log
USEMODULE += newlib
USEMODULE += periph
USEMODULE += periph_hwrng
USEMODULE += periph_flash
USEMODULE += periph_uart
USEMODULE += random
USEMODULE += stdio_uart
USEMODULE += xtensa
# Common includes
INCLUDES += -I$(RIOTBOARD)/common/$(CPU)/include