Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Nodemcu Firmware
Commits
f15470e4
Commit
f15470e4
authored
Oct 02, 2022
by
Philip Gladstone
Committed by
Johny Mattsson
Oct 05, 2022
Browse files
Include the rmt device for the esp32-c3 (and other missing devices)
parent
c7cab0ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
components/modules/CMakeLists.txt
View file @
f15470e4
...
...
@@ -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
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment