-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Garmin 18x, Novatel smart 6 and 7
- Loading branch information
1 parent
1d383de
commit 94e1fd6
Showing
5 changed files
with
67 additions
and
9 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
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,31 @@ | ||
<?xml version="1.0"?> | ||
<robot xmlns:xacro="http://www.ros.org/wiki/xacro"> | ||
<xacro:macro name="garmin_18x" params="name parent_link *origin"> | ||
<link name="${name}_link"> | ||
<visual> | ||
<material name="black"/> | ||
<geometry> | ||
<cylinder radius="0.0305" length="0.0195" /> | ||
</geometry> | ||
</visual> | ||
<collision> | ||
<material name="black"/> | ||
<geometry> | ||
<cylinder radius="0.0305" length="0.0195" /> | ||
</geometry> | ||
</collision> | ||
</link> | ||
<joint name="${name}_joint" type="fixed"> | ||
<child link="${name}_link"/> | ||
<parent link="${parent_link}"/> | ||
<xacro:insert_block name="origin"/> | ||
</joint> | ||
|
||
<gazebo reference="${name}_link"> | ||
<sensor name="${name}" type="navsat"> | ||
<always_on>1</always_on> | ||
<update_rate>1</update_rate> | ||
</sensor> | ||
</gazebo> | ||
</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