commit 6fbd51e6b60f29c0eafcc33eb1db6531646e721b Author: maddiebaka Date: Thu Nov 13 14:01:37 2025 -0500 Initial commit 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) +{ + +}