- guide-stepper: - add queue to send commands to stepper-ctl task - add function that tells stepper task to move to zero - increase travel length full axis length 110 - control: move guide to zero at reset - Cmake: enable colored output
19 lines
430 B
CMake
19 lines
430 B
CMake
idf_component_register(
|
|
SRCS
|
|
"main.cpp"
|
|
"config.cpp"
|
|
"control.cpp"
|
|
"buzzer.cpp"
|
|
"vfd.cpp"
|
|
"display.cpp"
|
|
"cutter.cpp"
|
|
"switchesAnalog.cpp"
|
|
"stepper.cpp"
|
|
"guide-stepper.cpp"
|
|
"encoder.cpp"
|
|
INCLUDE_DIRS
|
|
"."
|
|
)
|
|
|
|
# colored build output (errors, warnings...)
|
|
idf_build_set_property(COMPILE_OPTIONS "-fdiagnostics-color=always" APPEND) |