From e676abf2d20d944a3708b8159946a6ef50deccb7 Mon Sep 17 00:00:00 2001 From: crispyberry Date: Thu, 5 Feb 2026 12:38:18 +0800 Subject: [PATCH] feat: new project --- CMakeLists.txt | 6 ++++++ main/CMakeLists.txt | 2 ++ main/mimi.c | 6 ++++++ 3 files changed, 14 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 main/CMakeLists.txt create mode 100644 main/mimi.c 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) +{ + +}