industrial_training icon indicating copy to clipboard operation
industrial_training copied to clipboard

Error compiling exercise 4.1

Open joe-vray opened this issue 7 years ago • 4 comments

When trying to build this exercise, I get following error:

"catkin_ws/src/ur5_demo_descartes/include/ur5_demo_descartes/ur_moveit_plugin.h:89:48: fatal error: moveit_msgs/GetKinematicSolverInfo.h: No such file or directory"

Reading this post, it seems that this GetKinematicSolverInfo service has been removed from package.

Any suggestion?

joe-vray avatar Apr 27 '17 14:04 joe-vray

@gaetanauvray Which branch are you are you using?

jrgnicho avatar Apr 27 '17 15:04 jrgnicho

I am using kinetic for both, ros_industrial and movit_msgs.

joe-vray avatar Apr 27 '17 16:04 joe-vray

I was able to work around by putting the jade-devel branch of movit_msgs in my catkin environment, but solution might still be needed for kinetic branch.

joe-vray avatar Apr 28 '17 07:04 joe-vray

Hi, had a similar issue, and fixed it in my IK plugin by this simple action

#include <moveit_msgs/GetKinematicSolverInfo.h> should be replaced by #include <moveit_msgs/KinematicSolverInfo.h>

guihomework avatar May 03 '17 18:05 guihomework