Basic firmware project created

This commit is contained in:
2024-03-30 19:22:22 +01:00
parent 0477ae9082
commit a0a61ddbee
7 changed files with 1969 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/build/
/sdkconfig.old

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "esp-idf"]
path = esp-idf
url = ../../espressif/esp-idf.git

9
CMakeLists.txt Normal file
View File

@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 3.16.3)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
set(CMAKE_CXX_STANDARD 23)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS ON)
project(esp-ledstrip)

1
esp-idf Submodule

Submodule esp-idf added at be06a6f5ff

1
main/CMakeLists.txt Normal file
View File

@ -0,0 +1 @@
idf_component_register(SRCS main.cpp)

3
main/main.cpp Normal file
View File

@ -0,0 +1,3 @@
extern "C" void app_main()
{
}

1950
sdkconfig Normal file

File diff suppressed because it is too large Load Diff