Initial commit
This commit is contained in:
commit
c2226f73e0
10 changed files with 174 additions and 0 deletions
4
src/CMakeLists.txt
Normal file
4
src/CMakeLists.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
FILE(GLOB_RECURSE app_sources ${CMAKE_SOURCE_DIR}/src/*.*)
|
||||
|
||||
idf_component_register(SRCS ${app_sources})
|
||||
#target_compile_options(${COMPONENT_LIB} PRIVATE -std=gnu++11)
|
9
src/main.cpp
Normal file
9
src/main.cpp
Normal file
|
@ -0,0 +1,9 @@
|
|||
#include "Arduino.h"
|
||||
|
||||
extern "C" void app_main()
|
||||
{
|
||||
initArduino();
|
||||
|
||||
Serial.begin(115200);
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue