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
01b78ace
Commit
01b78ace
authored
3 years ago
by
Sergi Hernandez
Browse files
Options
Downloads
Patches
Plain Diff
Implemented the dynamic_reconfigure function in the opendrive global planner module.
parent
73fc69cb
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/iri_nav_module/opendrive_gp_module.h
+12
-0
12 additions, 0 deletions
include/iri_nav_module/opendrive_gp_module.h
src/iri_nav_module/dyn_params.pyc
+0
-0
0 additions, 0 deletions
src/iri_nav_module/dyn_params.pyc
with
12 additions
and
0 deletions
include/iri_nav_module/opendrive_gp_module.h
+
12
−
0
View file @
01b78ace
...
...
@@ -26,6 +26,11 @@ class COpendriveGPModule : public CNavPlannerModule<ModuleCfg>
*
*/
COpendriveGPModule
(
const
std
::
string
&
name
,
const
std
::
string
&
name_space
=
std
::
string
(
""
));
/**
* \brief
*
*/
void
dynamic_reconfigure
(
ModuleCfg
&
config
,
const
std
::
string
&
name
);
/* parameter functions */
dyn_reconf_status_t
is_multi_hypothesis
(
bool
&
enable
);
dyn_reconf_status_t
multy_hypothesis
(
bool
enable
);
...
...
@@ -70,6 +75,13 @@ class COpendriveGPModule : public CNavPlannerModule<ModuleCfg>
}
template
<
class
ModuleCfg
>
void
COpendriveGPModule
<
ModuleCfg
>::
dynamic_reconfigure
(
ModuleCfg
&
config
,
const
std
::
string
&
name
)
{
this
->
get_map
.
dynamic_reconfigure
(
config
,
name
+
"_get_map"
);
this
->
get_nodes
.
dynamic_reconfigure
(
config
,
name
+
"_get_nodes"
);
}
/* parameter functions */
template
<
class
ModuleCfg
>
dyn_reconf_status_t
COpendriveGPModule
<
ModuleCfg
>::
is_multi_hypothesis
(
bool
&
enable
)
...
...
This diff is collapsed.
Click to expand it.
src/iri_nav_module/dyn_params.pyc
0 → 100644
+
0
−
0
View file @
01b78ace
File added
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