From 47c3bd30c09bc03b66d5dfc6d6b789f336db1b02 Mon Sep 17 00:00:00 2001 From: 0xFEEDC0DE64 Date: Mon, 22 Mar 2021 16:06:32 +0100 Subject: [PATCH] Added rmt and driver --- CMakeLists.txt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8fcd030..783678b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1 +1,9 @@ -idf_component_register(SRCS src/internal/Esp32_i2s.c INCLUDE_DIRS src) +idf_component_register( + SRCS + src/internal/Esp32_i2s.c + src/internal/NeoEsp32RmtMethod.cpp + INCLUDE_DIRS + src + REQUIRES + driver +)