-
Notifications
You must be signed in to change notification settings - Fork 218
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
Fix for issue #4: misc cleanup of KR 210 L150 support pkg #25
Fix for issue #4: misc cleanup of KR 210 L150 support pkg #25
Conversation
@tingelst: could you take a look? Review is enough, I'll merge it. |
<child link="${prefix}Link1"/> | ||
<origin xyz="0 0 0" rpy="0 0 0"/> | ||
</joint> | ||
</xacro:macro> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe add a base_link-base
to conform with the other support packages in the repo?
<!-- ROS base_link to KUKA $ROBROOT coordinate system transform -->
<link name="${prefix}base" />
<joint name="${prefix}base_link-base" type="fixed">
<origin xyz="0 0 0" rpy="0 0 0"/>
<parent link="${prefix}base_link"/>
<child link="${prefix}base"/>
</joint>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Certainly an issue. Reported: #19.
Other than the comment above, this looks ok to me. |
Only the Collada files are used.
Brings link name in-line with other links in xacro macro. A fixed joint linking 'Link1' with 'link_1' is added to preserve bw-compatibility.
Use private parameters with joint_state_publisher.
dd57d5a
to
c3fc5ab
Compare
Thanks for reviewing @tingelst. |
This PR includes a nr of small fixes to the files in the KR 210 support package. Some deal with the remaining items from #4, others are things I noticed while cleaning it up.
I've included commit 1fafe38, but depending on @gomezc's reply to my comment in #4 I may revert it.
Renaming of the
Link1
link in acddcd6 was done in a bw-compatible way by keeping the old link around and making it coincident with the newlink_1
using a fixed joint. If/when this PR is accepted, I'll create an issue to track the eventual removal ofLink1
. Alternatively, we could immediately remove it, seeing as this pkg is in an_experimental
repository, and breakages are allowed.