setup driver

This commit is contained in:
2026-03-21 21:30:44 -05:00
parent a5411c45f5
commit 6723c6343a
6 changed files with 23 additions and 5 deletions
+5
View File
@@ -0,0 +1,5 @@
set(SOURCES
"i2c.cpp"
)
target_sources(${COMPONENT_LIB} PRIVATE ${SOURCES})
+5
View File
@@ -0,0 +1,5 @@
#include "stdio.h"
void i2c_test() {
printf("initializing i2c or something\n");
}