Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iri_rosnav
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
labrobotica
ros
navigation
iri_rosnav
Commits
8875f20b
Commit
8875f20b
authored
4 years ago
by
Sergi Hernandez
Browse files
Options
Downloads
Patches
Plain Diff
Added new arguments to set the name of the move_base stack.
Added the necessary remaps.
parent
f93cf4dc
No related branches found
Branches containing commit
No related tags found
1 merge request
!4
Added new arguments to set the name of the move_base stack.
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
launch/include/move_base.launch
+4
-1
4 additions, 1 deletion
launch/include/move_base.launch
launch/nav.launch
+4
-0
4 additions, 0 deletions
launch/nav.launch
with
8 additions
and
1 deletion
launch/include/move_base.launch
+
4
−
1
View file @
8875f20b
...
...
@@ -3,6 +3,7 @@
<launch>
<arg
name=
"ns"
default=
"robot"
/>
<arg
name=
"move_base_name"
default=
"move_base"
/>
<arg
name=
"path"
default=
"$(find iri_rosnav)/params"
/>
<arg
name=
"move_base_params"
default=
"move_base_params.yaml"
/>
<arg
name=
"costmap_common_params"
default=
"common_params.yaml"
/>
...
...
@@ -23,12 +24,14 @@
<node
pkg =
"move_base"
type=
"move_base"
name=
"move_base"
name=
"
$(arg
move_base
_name)
"
output=
"$(arg output)"
launch-prefix=
"$(arg launch_prefix)"
>
<remap
from=
"/map"
to=
"$(arg map_topic)"
/>
<remap
from=
"cmd_vel"
to=
"$(arg cmd_vel_topic)"
/>
<remap
from=
"odom"
to=
"$(arg odom_topic)"
/>
<remap
from=
"move_base_simple/goal"
to=
"$(arg move_base_name)_simple/goal"
/>
<remap
from=
"move_base"
to=
"$(arg move_base_name)"
/>
<rosparam
file=
"$(arg path)/$(arg move_base_params)"
command=
"load"
/>
<rosparam
file=
"$(arg path)/local_planner/$(arg local_planner)_params.yaml"
command=
"load"
/>
...
...
This diff is collapsed.
Click to expand it.
launch/nav.launch
+
4
−
0
View file @
8875f20b
...
...
@@ -2,6 +2,7 @@
<!-- -->
<launch>
<arg
name=
"ns"
default=
"robot"
/>
<arg
name=
"move_base_name"
default=
"move_base"
/>
<arg
name=
"path"
default=
"$(find iri_rosnav)/params"
/>
<arg
name=
"move_base_params"
default=
"move_base_params.yaml"
/>
<arg
name=
"costmap_common_params"
default=
"common_params.yaml"
/>
...
...
@@ -82,6 +83,7 @@
</group>
</group>
<!--
<group unless="$(arg use_fake_loc)">
<group unless="$(arg use_map)">
<node pkg="tf"
...
...
@@ -92,6 +94,7 @@
</node>
</group>
</group>
-->
<group
if=
"$(arg use_fake_loc)"
>
<include
file=
"$(find iri_rosnav)/launch/include/fake_loc.launch"
>
...
...
@@ -112,6 +115,7 @@
<group
if=
"$(arg use_move_base)"
>
<include
file=
"$(find iri_rosnav)/launch/include/move_base.launch"
>
<arg
name=
"ns"
value=
"$(arg ns)"
/>
<arg
name=
"move_base_name"
value=
"$(arg move_base_name)"
/>
<arg
name=
"path"
value=
"$(arg path)"
/>
<arg
name=
"move_base_params"
value=
"$(arg move_base_params)"
/>
<arg
name=
"costmap_common_params"
value=
"$(arg costmap_common_params)"
/>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment