From 1cbb1cf860b56999bf44c07dfd9f6e07dbdacd6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Gassmann?= Date: Mon, 8 Apr 2024 22:34:19 +0200 Subject: [+] Hello World --- main/CMakeLists.txt | 2 ++ main/main.c | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 main/CMakeLists.txt create mode 100644 main/main.c (limited to 'main') diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt new file mode 100644 index 0000000..cf2c455 --- /dev/null +++ b/main/CMakeLists.txt @@ -0,0 +1,2 @@ +idf_component_register(SRCS "main.c" + INCLUDE_DIRS ".") diff --git a/main/main.c b/main/main.c new file mode 100644 index 0000000..d42f8ba --- /dev/null +++ b/main/main.c @@ -0,0 +1,6 @@ +#include + +void app_main(void) +{ + printf("Hey!\n"); +} -- cgit v1.2.3