-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1702 from sktometometo/PR/fetchdev/support-head-l515
[Fetch] Support head l515 (Part1)
- Loading branch information
Showing
15 changed files
with
3,768 additions
and
34 deletions.
There are no files selected for viewing
3,571 changes: 3,571 additions & 0 deletions
3,571
jsk_fetch_robot/jsk_fetch_accessories/head_l515/fetch_head_l515_mount.step
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file added
BIN
+538 KB
jsk_fetch_robot/jsk_fetch_accessories/head_l515/fetch_head_l515_mount.stl
Binary file not shown.
Binary file added
BIN
+4.77 KB
...etch_robot/jsk_fetch_accessories/head_l515/fetch_head_l515_mount_simplified.stl
Binary file not shown.
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,7 @@ | ||
# This file is bash configuration for robot.conf | ||
# This file must be at /var/lib/robot/config.bash | ||
|
||
export RS_SERIAL_NO_T265="" | ||
export RS_SERIAL_NO_D435_FRONTRIGHT="" | ||
export RS_SERIAL_NO_D435_FRONTLEFT="" | ||
export RS_SERIAL_NO_L515_HEAD="" |
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
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
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
5 changes: 5 additions & 0 deletions
5
jsk_fetch_robot/jsk_fetch_startup/launch/moveit/fetch.srdf.xacro
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 |
---|---|---|
@@ -1,7 +1,12 @@ | ||
<?xml version="1.0" ?> | ||
<robot name="fetch" xmlns:xacro="http://www.ros.org/wiki/xacro"> | ||
<xacro:arg name="head_l515" default="true" /> | ||
|
||
<!-- VIRTUAL JOINT: virtual joint from map to base_link --> | ||
<!-- this is necessary to add collision objects based on map frame --> | ||
<virtual_joint name="world_joint" type="planar" parent_frame="map" child_link="base_link" /> | ||
<xacro:include filename="$(find fetch_moveit_config)/config/fetch.srdf" /> | ||
<xacro:if value="$(arg head_l515)"> | ||
<xacro:include filename="$(find jsk_fetch_startup)/robots/head_l515.srdf.xacro" /> | ||
</xacro:if> | ||
</robot> |
6 changes: 6 additions & 0 deletions
6
jsk_fetch_robot/jsk_fetch_startup/robots/head_l515.srdf.xacro
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,6 @@ | ||
<?xml version="1.0" ?> | ||
<robot name="head_l515"> | ||
<!--DISABLE COLLISIONS: By default it is assumed that any link of the robot could potentially come into collision with any other link in the robot. This tag disables collision checking between a specified pair of links. --> | ||
<disable_collisions link1="head_tilt_link" link2="head_l515_mount_link" reason="Never" /> | ||
<disable_collisions link1="head_tilt_link" link2="l515_head_link" reason="Never" /> | ||
</robot> |
Oops, something went wrong.