17 lines
446 B
CMake
17 lines
446 B
CMake
|
set(OUTPUT_NAME servo2040_sensor_feedback)
|
||
|
add_executable(${OUTPUT_NAME} servo2040_sensor_feedback.cpp)
|
||
|
|
||
|
target_link_libraries(${OUTPUT_NAME}
|
||
|
pico_stdlib
|
||
|
servo2040
|
||
|
analogmux
|
||
|
analog
|
||
|
button
|
||
|
)
|
||
|
|
||
|
# enable usb output, disable uart output (so it doesn't confuse any connected servos)
|
||
|
pico_enable_stdio_usb(${OUTPUT_NAME} 1)
|
||
|
pico_enable_stdio_uart(${OUTPUT_NAME} 0)
|
||
|
|
||
|
pico_add_extra_outputs(${OUTPUT_NAME})
|