Initial commit

This commit is contained in:
2025-11-08 13:17:53 +01:00
commit 47aa23cabb
5 changed files with 76 additions and 0 deletions

3
main/CMakeLists.txt Normal file
View File

@@ -0,0 +1,3 @@
idf_component_register(SRCS "main.c"
PRIV_REQUIRES spi_flash
INCLUDE_DIRS "")

3
main/main.c Normal file
View File

@@ -0,0 +1,3 @@
#include <stdio.h>
void app_main(void) { printf("Hello world!\n"); }