Moveit operation error in temporary compensation
Hi, I'm performing a robot arm movement to the target's position in the ROS1, noetic, and Gazebo environment to grasp the object. However, there was a problem using the moveit. The questions are as follows.
first Error
[ WARN] [1682318752.584089818, 183.506000000]: TF_REPEATED_DATA ignoring data with redundant timestamp for frame wheel_left_link at time 183.503000 according to authority unknown_publisher
[ WARN] [1682318752.584098988, 183.506000000]: TF_REPEATED_DATA ignoring data with redundant timestamp for frame wheel_left_link at time 183.503000 according to authority unknown_publisher
[ WARN] [1682318752.584141309, 183.506000000]: TF_REPEATED_DATA ignoring data with redundant timestamp for frame wheel_right_link at time 183.503000 according to authority unknown_publisher
[ WARN] [1682318752.584158418, 183.506000000]: TF_REPEATED_DATA ignoring data with redundant timestamp for frame wheel_right_link at time 183.503000 according to authority unknown_publisher
But it doesn't have to be so much of a concern
[ERROR] [1682319061.856444867, 8.062000000]: IK solver error code: -31
[ERROR] [1682319061.856489754, 8.062000000]: Failed to compute the IK solution for the given target pose.
[ERROR] [1682319061.851170673, 8.057000000]: Found empty JointState message
I will provide my GitHub.
https://github.com/98kje/CJU_MASTER/b...
this part is launch (moveit and gazebo)
The main error is this phrase.
[ WARN] [1682319262.709269641, 208.409000000]: Timed out
The expected problem is
- Collision problem of urdf
- Increase the planning time (up to 300s if it was useless no matter how much you increase it)
- Planner? (The same problem when using RRT and RRT connect)
See the code.
/********************************************************************* * Software License Agreement (BSD License) * * Copyright (c) 2013, SRI International * All rights reserved. * Copyright (c) 2017, Jonathan Cacace * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials provided * with the distribution. * * Neither the name of SRI International nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. *********************************************************************/ /* Authors: Sachin Chitta Jonathan Cacace */ #include <moveit/move_group_interface/move_group_interface.h> #include <moveit/planning_scene_interface/planning_scene_interface.h> #include <moveit/move_group_interface/move_group_interface.h> #include <moveit_msgs ...