Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iri_nav_module
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
Package Registry
Model registry
Operate
Environments
Terraform modules
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_nav_module
Commits
d0b6e905
Commit
d0b6e905
authored
4 months ago
by
Fernando Herrero
Browse files
Options
Downloads
Patches
Plain Diff
Default robot ref frame as base_footprint
parent
31284ed3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/iri_nav_module/dyn_params.py
+8
-8
8 additions, 8 deletions
src/iri_nav_module/dyn_params.py
with
8 additions
and
8 deletions
src/iri_nav_module/dyn_params.py
+
8
−
8
View file @
d0b6e905
...
@@ -18,18 +18,18 @@ def add_nav_module_params(gen,name):
...
@@ -18,18 +18,18 @@ def add_nav_module_params(gen,name):
add_module_params
(
new_group
,
prefix
+
"
module
"
)
add_module_params
(
new_group
,
prefix
+
"
module
"
)
move_base_action
=
add_module_action_params
(
new_group
,
prefix
+
"
move_base
"
)
move_base_action
=
add_module_action_params
(
new_group
,
prefix
+
"
move_base
"
)
move_base_action
.
add
(
prefix
+
"
move_base_goal_frame_id
"
,
str_t
,
0
,
"
Reference frame of the position goals
"
,
"
map
"
)
move_base_action
.
add
(
prefix
+
"
move_base_goal_frame_id
"
,
str_t
,
0
,
"
Reference frame of the position goals
"
,
"
map
"
)
move_base_action
.
add
(
prefix
+
"
move_base_global_frame_id
"
,
str_t
,
0
,
"
Global reference frame of the TF
"
,
"
map
"
)
move_base_action
.
add
(
prefix
+
"
move_base_global_frame_id
"
,
str_t
,
0
,
"
Global reference frame of the TF
"
,
"
map
"
)
move_base_action
.
add
(
prefix
+
"
move_base_robot_frame_id
"
,
str_t
,
0
,
"
Main reference frame of the robot
"
,
"
map
"
)
move_base_action
.
add
(
prefix
+
"
move_base_robot_frame_id
"
,
str_t
,
0
,
"
Main reference frame of the robot
"
,
"
base_footprint
"
)
move_base_action
.
add
(
prefix
+
"
move_base_cancel_prev
"
,
bool_t
,
0
,
"
Cancel previous action
"
,
True
)
move_base_action
.
add
(
prefix
+
"
move_base_cancel_prev
"
,
bool_t
,
0
,
"
Cancel previous action
"
,
True
)
odom
.
add
(
prefix
+
"
odom_watchdog_time_s
"
,
double_t
,
0
,
"
Maximum time between odom messages
"
,
1
,
0.01
,
50
)
odom
.
add
(
prefix
+
"
odom_watchdog_time_s
"
,
double_t
,
0
,
"
Maximum time between odom messages
"
,
1
,
0.01
,
50
)
tf
.
add
(
prefix
+
"
tf_timeout_time_s
"
,
double_t
,
0
,
"
Maximum time to wait for transform
"
,
5
,
0.01
,
50
)
tf
.
add
(
prefix
+
"
tf_timeout_time_s
"
,
double_t
,
0
,
"
Maximum time to wait for transform
"
,
5
,
0.01
,
50
)
costmap
=
add_module_service_params
(
new_group
,
prefix
+
"
clear_costmap
"
)
costmap
=
add_module_service_params
(
new_group
,
prefix
+
"
clear_costmap
"
)
costmap
.
add
(
prefix
+
"
clear_costmap_enable_auto_clear
"
,
bool_t
,
0
,
"
Periodically clear the costmaps
"
,
False
)
costmap
.
add
(
prefix
+
"
clear_costmap_enable_auto_clear
"
,
bool_t
,
0
,
"
Periodically clear the costmaps
"
,
False
)
costmap
.
add
(
prefix
+
"
clear_costmap_auto_clear_rate_hz
"
,
double_t
,
0
,
"
Clear costmaps period
"
,
0.1
,
0.01
,
1.0
)
costmap
.
add
(
prefix
+
"
clear_costmap_auto_clear_rate_hz
"
,
double_t
,
0
,
"
Clear costmaps period
"
,
0.1
,
0.01
,
1.0
)
make_plan
=
add_module_service_params
(
new_group
,
prefix
+
"
make_plan
"
)
make_plan
=
add_module_service_params
(
new_group
,
prefix
+
"
make_plan
"
)
...
...
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