Commit f15470e4 authored by Philip Gladstone's avatar Philip Gladstone Committed by Johny Mattsson
Browse files

Include the rmt device for the esp32-c3 (and other missing devices)

parent c7cab0ab
......@@ -59,12 +59,22 @@ if(IDF_TARGET STREQUAL "esp32")
elseif(IDF_TARGET STREQUAL "esp32s2")
list(APPEND module_srcs
"dac.c"
"i2s.c"
"touch.c"
"rmt.c"
"pulsecnt.c"
)
elseif(IDF_TARGET STREQUAL "esp32s3")
list(APPEND module_srcs
"i2s.c"
"touch.c"
"rmt.c"
"pulsecnt.c"
"sdmmc.c"
)
elseif(IDF_TARGET STREQUAL "esp32c3")
list(APPEND module_srcs
"rmt.c"
)
endif()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment