commit e676abf2d20d944a3708b8159946a6ef50deccb7 Author: crispyberry Date: Thu Feb 5 12:38:18 2026 +0800 feat: new project diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..1893e8e --- /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(mimi) diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt new file mode 100644 index 0000000..f44f8b3 --- /dev/null +++ b/main/CMakeLists.txt @@ -0,0 +1,2 @@ +idf_component_register(SRCS "mimi.c" + INCLUDE_DIRS ".") diff --git a/main/mimi.c b/main/mimi.c new file mode 100644 index 0000000..7b66f33 --- /dev/null +++ b/main/mimi.c @@ -0,0 +1,6 @@ +#include + +void app_main(void) +{ + +}