cpu/esp_common: added for common files for ESP SoC

This commit is contained in:
Gunar Schorcht 2018-12-27 17:28:46 +01:00
parent 8449324cf8
commit a352500476
4 changed files with 13 additions and 4 deletions

View File

@ -2,6 +2,7 @@
MODULE = cpu
# Add a list of subdirectories, that should also be built:
DIRS += $(RIOTCPU)/esp_common
DIRS += periph
DIRS += freertos
DIRS += vendor
@ -14,10 +15,6 @@ ifneq (, $(filter esp_eth, $(USEMODULE)))
DIRS += esp-eth
endif
ifneq (, $(filter esp_now, $(USEMODULE)))
DIRS += esp-now
endif
ifneq (, $(filter esp_wifi, $(USEMODULE)))
DIRS += esp-wifi
endif

View File

@ -2,6 +2,7 @@
MODULE = cpu
# Add a list of subdirectories, that should also be built:
DIRS += $(RIOTCPU)/esp_common
DIRS += periph
DIRS += sdk
DIRS += vendor

6
cpu/esp_common/Makefile Normal file
View File

@ -0,0 +1,6 @@
# add a list of subdirectories, that should also be build
ifneq (, $(filter esp_now, $(USEMODULE)))
DIRS += esp-now
endif
include $(RIOTBASE)/Makefile.base

5
cpu/esp_common/doc.txt Normal file
View File

@ -0,0 +1,5 @@
/**
* @defgroup cpu_esp_common ESP Common
* @brief Common modules for Espressif ESP SoCs
* @ingroup cpu
*/