Skip to content

Commit 1c1bb33

Browse files
committed
cpu/esp32/esp-idf/sdmmc: migration to ESP-IDF v5.4
1 parent a6d09cd commit 1c1bb33

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

cpu/esp32/esp-idf/sdmmc/Makefile

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,18 @@ MODULE = esp_idf_sdmmc
22

33
# source files to be compiled for this module
44
ESP32_SDK_SRC = \
5-
components/driver/sdmmc_host.c \
6-
components/driver/sdmmc_transaction.c \
5+
components/esp_driver_sdmmc/src/sdmmc_host.c \
6+
components/esp_driver_sdmmc/src/sdmmc_transaction.c \
77
components/soc/$(CPU_FAM)/sdmmc_periph.c \
8+
components/hal/sdmmc_hal.c \
9+
components/esp_hw_support/dma/esp_dma_utils.c \
10+
components/esp_hw_support/esp_memory_utils.c \
811
#
912

1013
# additional include pathes required by this module
11-
# INCLUDES += -I$(ESP32_SDK_DIR)/components/driver/include
14+
INCLUDES += -I$(ESP32_SDK_DIR)/components/esp_driver_sdmmc/include
15+
INCLUDES += -I$(ESP32_SDK_DIR)/components/sdmmc/include
16+
INCLUDES += -I$(ESP32_SDK_DIR)/components/esp_hw_support/dma/include
1217

1318
include $(RIOTBASE)/Makefile.base
1419

0 commit comments

Comments
 (0)