-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
catkin_make failed #1
Comments
I had the same issue and I replaced 'bool success' with |
I had the same issue but even I replaced 'bool success' with |
Just change the line with errors with |
I had the same issue while building the package and here is the errors on the terminal. Please someone guide me to solve this issue and build the module. Thank you
|
i m having the same issue tried to use things mentioned but not solved...can anyone help pls? error on this line if implement above.. |
I have succeed! example: success = move_group.move(); to success = static_cast(move_group.move()); you should replace all error! |
thanks so much it works now 🙂
…On Sun, Apr 25, 2021, 10:25 AM Zhou-y-b ***@***.***> wrote:
I have succeed!
example:
replace
success = move_group.move();
success = move_group.execute(my_plan);
to
success = static_cast(move_group.move());
success = static_cast(move_group.execute(my_plan));
you should replace all error!
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#1 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ANSIDWIBXH3RAS6CTLJKMFTTKORUDANCNFSM4JALKFPA>
.
|
/home/eric/catkin_ws/src/pick-place-robot/kuka_arm/src/trajectory_sampler.cpp: In constructor ‘TrajectorySampler::TrajectorySampler(ros::NodeHandle)’:
/home/eric/catkin_ws/src/pick-place-robot/kuka_arm/src/trajectory_sampler.cpp:180:43: error: cannot convert ‘moveit::planning_interface::MoveItErrorCode’ to ‘bool’ in initialization
bool success = move_group.plan(my_plan);
^
The text was updated successfully, but these errors were encountered: