You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I built dynamixel_workbench successfully from the ros2 branch with colcon. I noticed the build instructions for the programs in dynamixel_workbench_toolbox/examples assume you install the SDK first, without ROS, into /usr/local. These test programs seem very useful when using the servos the first time and exploring the whole software stack. Would it be possible to include these in the ROS build too (or provide instructions)?
I couldn't figure out how to do this "properly", but with some local modifications to the existing CMakeLists.txt I could compile them using the instructions (I had the sdk checked out next to this, in the same workspace, and previously built with colcon, together with workbench):
Hi, I built dynamixel_workbench successfully from the
ros2
branch withcolcon
. I noticed the build instructions for the programs indynamixel_workbench_toolbox/examples
assume you install the SDK first, without ROS, into/usr/local
. These test programs seem very useful when using the servos the first time and exploring the whole software stack. Would it be possible to include these in the ROS build too (or provide instructions)?I couldn't figure out how to do this "properly", but with some local modifications to the existing
CMakeLists.txt
I could compile them using the instructions (I had the sdk checked out next to this, in the same workspace, and previously built withcolcon
, together with workbench):I added this:
...and changed
target_link_libraries(dynamixel_workbench LINK_PUBLIC "/usr/local/lib/libdxl_x64_cpp.so")
totarget_link_libraries(dynamixel_workbench LINK_PUBLIC dynamixel_sdk)
The text was updated successfully, but these errors were encountered: