cable-length-cutter/main/CMakeLists.txt
jonny_ji7 58c5a92d1e Add functional STEPPER_TEST feature
- add macro variable STEPPER_TEST (config.hpp)
    if set: only `task_stepper-test` is started (main.cpp)
- add file for stepper/guide related code (guide-stepper.cpp/hpp)
    currently defines a task that simply moves the axis left to right
    repeatedly with a speed defined by a potentiometer connected to ADC
    GPIO34
2023-02-21 21:27:33 +01:00

15 lines
271 B
CMake

idf_component_register(
SRCS
"main.cpp"
"config.cpp"
"control.cpp"
"buzzer.cpp"
"vfd.cpp"
"display.cpp"
"cutter.cpp"
"switchesAnalog.cpp"
"guide-stepper.cpp"
INCLUDE_DIRS
"."
)