forked from pal-robotics/talos_robot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WIP] Add draft of 6D joint pose calibration.
- Loading branch information
Showing
4 changed files
with
52 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
Copyright (c) 2020, PAL Robotics, S.L. | ||
All rights reserved. | ||
This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License. | ||
To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/3.0/ or send a letter to | ||
Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA. | ||
--> | ||
<robot xmlns:xacro="http://ros.org/wiki/xacro"> | ||
|
||
<xacro:macro name="calibration_joint" params="name parent *origin"> | ||
<link name="${name}_calibration_link"/> | ||
<joint name="${name}_calibration_joint" type="fixed"> | ||
<parent link="${parent}" /> | ||
<child link="${name}_calibration_link" /> | ||
<xacro:insert_block name="origin" /> | ||
</joint> | ||
</xacro:macro> | ||
|
||
</robot> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters