mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 07:32:45 +01:00
751a958529
The code required by the ESP-IDF is compiled directly from source in the `esp32_sdk` package. The compilation is structured by modules for easier use.
19 lines
499 B
Makefile
19 lines
499 B
Makefile
MODULE = esp_idf_spi_ram
|
|
|
|
# source files to be compiled for this module
|
|
ESP32_SDK_SRC = \
|
|
components/esp_hw_support/port/$(CPU)/spiram.c \
|
|
components/esp_hw_support/port/$(CPU)/spiram_psram.c \
|
|
components/esp_hw_support/port/$(CPU)/cache_sram_mmu.c \
|
|
#
|
|
|
|
# additional include pathes required by this module
|
|
INCLUDES += -I$(ESP32_SDK_DIR)/components/soc/$(CPU)/include
|
|
|
|
include $(RIOTBASE)/Makefile.base
|
|
|
|
ESP32_SDK_BIN = $(BINDIR)/$(MODULE)
|
|
|
|
include ../esp_idf.mk
|
|
include ../esp_idf_cflags.mk
|