We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e640060 + 01dd2dd commit c143090Copy full SHA for c143090
components/driver/CMakeLists.txt
@@ -51,14 +51,15 @@ if(CONFIG_SOC_PCNT_SUPPORTED)
51
list(APPEND srcs "pcnt.c")
52
endif()
53
54
+if(CONFIG_SOC_SDMMC_HOST_SUPPORTED)
55
+ list(APPEND srcs "sdmmc_transaction.c" "sdmmc_host.c")
56
+endif()
57
+
58
59
if(${target} STREQUAL "esp32")
- # SDMMC and MCPWM are in ESP32 only.
60
list(APPEND srcs "dac_common.c"
61
"sdio_slave.c"
- "sdmmc_host.c"
62
"i2s.c"
- "sdmmc_transaction.c"
63
"touch_sensor_common.c"
64
"esp32/touch_sensor.c"
65
"esp32/adc.c"
@@ -82,9 +83,7 @@ if(IDF_TARGET STREQUAL "esp32s2")
82
83
84
85
if(${target} STREQUAL "esp32s3")
- list(APPEND srcs "sdmmc_host.c"
86
87
- "usb_serial_jtag.c"
+ list(APPEND srcs "usb_serial_jtag.c"
88
"spi_slave_hd.c"
89
90
"esp32s3/touch_sensor.c"
0 commit comments