-
Notifications
You must be signed in to change notification settings - Fork 1
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 #46 from Ashuh/organize-launch
Organize launch
- Loading branch information
Showing
54 changed files
with
999 additions
and
571 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
<launch> | ||
<arg name="grid_size_x" value="10" /> | ||
<arg name="grid_size_y" value="10" /> | ||
<arg name="grid_resolution" value="0.05" /> | ||
<arg name="map_topic" value="map" /> | ||
<arg name="scan_topic" value="scan" /> | ||
<arg name="grid_size_x" default="10"/> | ||
<arg name="grid_size_y" default="10"/> | ||
<arg name="grid_resolution" default="0.05"/> | ||
<arg name="scan_topic" default="scan"/> | ||
|
||
<node name="costmap_generator" pkg="costmap_generator" type="costmap_generator_node" output="screen"> | ||
<param name="grid_size_x" value="$(arg grid_size_x)" /> | ||
<param name="grid_size_y" value="$(arg grid_size_y)" /> | ||
<param name="grid_resolution" value="$(arg grid_resolution)" /> | ||
<param name="grid_size_x" value="$(arg grid_size_x)"/> | ||
<param name="grid_size_y" value="$(arg grid_size_y)"/> | ||
<param name="grid_resolution" value="$(arg grid_resolution)"/> | ||
|
||
<param name="map_topic" value="$(arg map_topic)" /> | ||
<param name="scan_topic" value="$(arg scan_topic)" /> | ||
<remap from="scan" to="$(arg scan_topic)"/> | ||
</node> | ||
</launch> |
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 |
---|---|---|
@@ -1,19 +1,15 @@ | ||
<launch> | ||
<arg name="look_ahead_dist" value="1" /> | ||
<arg name="gain" value="0.25" /> | ||
<arg name="look_ahead_dist" default="1"/> | ||
<arg name="gain" default="0.40"/> | ||
|
||
<arg name="trajectory_topic" value="path/local" /> | ||
<arg name="odom_topic" value="odom" /> | ||
<arg name="auto_drive_topic" value="drive" /> | ||
<arg name="viz_topic" value="drive_controller_viz" /> | ||
<arg name="trajectory_topic" default="trajectory"/> | ||
<arg name="odom_topic" default="odom"/> | ||
|
||
<node name="drive_controller" pkg="drive_controller" type="drive_controller_node" output="screen"> | ||
<param name="look_ahead_dist" value="$(arg look_ahead_dist)" /> | ||
<param name="gain" value="$(arg gain)" /> | ||
<param name="look_ahead_dist" value="$(arg look_ahead_dist)"/> | ||
<param name="gain" value="$(arg gain)"/> | ||
|
||
<param name="trajectory_topic" value="$(arg trajectory_topic)" /> | ||
<param name="odom_topic" value="$(arg odom_topic)" /> | ||
<param name="auto_drive_topic" value="$(arg auto_drive_topic)" /> | ||
<param name="viz_topic" value="$(arg viz_topic)" /> | ||
<remap from="trajectory" to="$(arg trajectory_topic)"/> | ||
<remap from="odom" to="$(arg odom_topic)"/> | ||
</node> | ||
</launch> |
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 |
---|---|---|
@@ -1,13 +1,16 @@ | ||
<launch> | ||
<arg name="drive_mode_topic" value="drive_mode" /> | ||
<arg name="joy_drive_topic" value="drive/joy" /> | ||
<arg name="auto_drive_topic" value="drive/auto" /> | ||
<arg name="selected_drive_topic" value="drive/selected" /> | ||
<arg name="drive_mode_topic" default="drive_mode" /> | ||
<arg name="joy_drive_topic" default="drive_joy" /> | ||
<arg name="auto_drive_topic" default="drive_auto" /> | ||
|
||
<node name="drive_mode_selector" pkg="drive_mode_selector" type="drive_mode_selector_node" output="screen"> | ||
<param name="drive_mode_topic" value="$(arg drive_mode_topic)" /> | ||
<param name="joy_drive_topic" value="$(arg joy_drive_topic)" /> | ||
<param name="auto_drive_topic" value="$(arg auto_drive_topic)" /> | ||
<param name="selected_drive_topic" value="$(arg selected_drive_topic)" /> | ||
|
||
<remap from="drive_mode_topic" to="$(arg drive_mode_topic)"/> | ||
<remap from="joy_drive_topic" to="$(arg joy_drive_topic)"/> | ||
<remap from="auto_drive_topic" to="$(arg auto_drive_topic)"/> | ||
</node> | ||
</launch> |
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
Oops, something went wrong.