From ffb415fb112d1902cdaf852df7c663b1ff5bd762 Mon Sep 17 00:00:00 2001 From: jonny_ji7 Date: Fri, 3 Jun 2022 09:53:27 +0200 Subject: [PATCH] init (esp-idf sample_project) Rewrite of firmware controlling an electric armchair (previous firmware developed 2019-2021) - Init esp-idf project: with esp-idf version v4.4.1 installed ran command `idf.py create-project armchair` - Add connection plan from old repo --- CMakeLists.txt | 8 ++++++++ main/CMakeLists.txt | 2 ++ main/armchair.c | 6 ++++++ 3 files changed, 16 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 main/CMakeLists.txt create mode 100644 main/armchair.c diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..cd14e0b --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,8 @@ +# For more information about build system see +# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html +# 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.5) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +project(armchair) diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt new file mode 100644 index 0000000..3fe9c1b --- /dev/null +++ b/main/CMakeLists.txt @@ -0,0 +1,2 @@ +idf_component_register(SRCS "armchair.c" + INCLUDE_DIRS ".") diff --git a/main/armchair.c b/main/armchair.c new file mode 100644 index 0000000..7b66f33 --- /dev/null +++ b/main/armchair.c @@ -0,0 +1,6 @@ +#include + +void app_main(void) +{ + +}