ee1e0a0df0
* add the ESP32_C3 first version * add the blinky ok version * fix the code * format file * add the readme * fix the formate * Update README.md * Update main.c * fix the readme * fix rtconfig.h * remove cpp config
23 lines
922 B
CMake
23 lines
922 B
CMake
idf_component_register(SRCS "main.c"
|
|
"../../../libcpu/risc-v/common/cpuport.c"
|
|
"../../../libcpu/risc-v/common/context_gcc.S"
|
|
"../../../src/components.c"
|
|
"../../../src/scheduler.c"
|
|
"../../../src/device.c"
|
|
"../../../src/clock.c"
|
|
"../../../src/irq.c"
|
|
"../../../src/thread.c"
|
|
"../../../src/mempool.c"
|
|
"../../../src/ipc.c"
|
|
"../../../src/mem.c"
|
|
"../../../src/object.c"
|
|
"../../../src/idle.c"
|
|
"../../../src/timer.c"
|
|
"../../../src/kservice.c"
|
|
INCLUDE_DIRS
|
|
"../../../include"
|
|
"../../../libcpu/risc-v/common"
|
|
"../")
|
|
ADD_DEFINITIONS(
|
|
-D__RTTHREAD__
|
|
) |