Added and tested GPIO class

This commit is contained in:
Matthias Mitscherlich
2023-01-13 11:03:16 +01:00
parent a8680dd5b5
commit aa946ff39f
7 changed files with 5425 additions and 19 deletions
+5 -1
View File
@@ -2,9 +2,13 @@
# for more information about component CMakeLists.txt files.
idf_component_register(
SRCS main.c # list the source files of this component
SRCS # list the source files of this component
"main.cpp"
"src/gpio.cpp"
INCLUDE_DIRS # optional, add here public include directories
"inc"
PRIV_INCLUDE_DIRS # optional, add here private include directories
REQUIRES # optional, list the public requirements (component names)
PRIV_REQUIRES # optional, list the private requirements
)