Created ESP-IDF for can-interface

This commit is contained in:
AlexanderHD27
2024-10-03 19:49:21 +02:00
parent 48fded7981
commit 096a6c18d6
18 changed files with 2554 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
idf_component_register(SRCS "operations.cpp"
INCLUDE_DIRS "include"
REQUIRES driver)

View File

@@ -0,0 +1,2 @@
bool dummy_function(bool flag);

View File

@@ -0,0 +1,4 @@
bool dummy_function(bool flag) {
return !flag;
}