This commit is contained in:
cnc 2025-04-09 04:49:58 -04:00
parent af86ce3c55
commit c630441e61
3 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,3 @@
idf_component_register(SRCS "drivers.c"
INCLUDE_DIRS "include")

View File

@ -0,0 +1,7 @@
#include <stdio.h>
#include "drivers.h"
void func(void)
{
}

View File

@ -0,0 +1 @@
void func(void);