From 6fbd51e6b60f29c0eafcc33eb1db6531646e721b Mon Sep 17 00:00:00 2001 From: maddiebaka Date: Thu, 13 Nov 2025 14:01:37 -0500 Subject: [PATCH] Initial commit --- CMakeLists.txt | 6 ++++++ main/CMakeLists.txt | 2 ++ main/spincoat-plater-firmware.c | 6 ++++++ 3 files changed, 14 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 main/CMakeLists.txt create mode 100644 main/spincoat-plater-firmware.c diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..8bb92f3 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +# The following five lines of boilerplate have to be in your project's +# CMakeLists in this exact order for cmake to work correctly +cmake_minimum_required(VERSION 3.16) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +project(spincoat-plater-firmware) diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt new file mode 100644 index 0000000..440c423 --- /dev/null +++ b/main/CMakeLists.txt @@ -0,0 +1,2 @@ +idf_component_register(SRCS "spincoat-plater-firmware.c" + INCLUDE_DIRS ".") diff --git a/main/spincoat-plater-firmware.c b/main/spincoat-plater-firmware.c new file mode 100644 index 0000000..7b66f33 --- /dev/null +++ b/main/spincoat-plater-firmware.c @@ -0,0 +1,6 @@ +#include + +void app_main(void) +{ + +}