You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, all requires nodes should be started (activated?) according to the MROS designed mechanism.
All params that we consider necessary should be dynamically configurable
etc...
List nav2 nodes and their parameters for Pilot turtlebot that can be subject to runtime reconfiguration in MROS
List all nav2 nodes and their parameters that can be subject to runtime reconfiguration in MROS
Verify that all nav2 nodes implement the reconfiguration interfaces required for MROS pilots
The text was updated successfully, but these errors were encountered:
* [ ] List nav2 nodes and their parameters for Pilot turtlebot that can be subject to runtime reconfiguration in MROS
* [ ] List all nav2 nodes and their parameters that can be subject to runtime reconfiguration in MROS
I am gathering all required nodes in a requirement list to put it in the GDoc.
* [ ] Verify that all nav2 nodes implement the reconfiguration interfaces required for MROS pilots
I am reviewing the nav2 nodes, and I have checked that AMCL, costmap_2d, and costmap_2d plugins have a ParameterEvent callback to reread the parameter configuration. I have to test it with the Foxy version to ensure that it works as we expected.
On the other hand, nav2_controller hasn't got a ParameterEvent callback. Instead of this, it uses the on_configure method of the LifeCycleNode to read the parameters.
I am reviewing the nav2 nodes, and I have checked that AMCL, costmap_2d, and costmap_2d plugins have a ParameterEvent callback to reread the parameter configuration. I have to test it with the Foxy version to ensure that it works as we expected.
On the other hand, nav2_controller hasn't got a ParameterEvent callback. Instead of this, it uses the on_configure method of the LifeCycleNode to read the parameters.
These are very important findings about the architectural tactics used for reconfiguration, nice work @jginesclavero , please add them in the Gdoc.
If I understand it correctly, parameter configuration is dealt with differently in some nav2 nodes:
Architectural tactic 1: parameter vales only updated in on_configure in the LifeCycleNode.
applied in: nav2_controller
Architectural tactic 2: parameter values updated dynamically in ParameterEvent callback, without relation to the LifeCycleNode
applied in: AMCL, costmap_2d, and costmap_2d plugins
For example, all requires nodes should be started (activated?) according to the MROS designed mechanism.
All params that we consider necessary should be dynamically configurable
etc...
List nav2 nodes and their parameters for Pilot turtlebot that can be subject to runtime reconfiguration in MROS
List all nav2 nodes and their parameters that can be subject to runtime reconfiguration in MROS
Verify that all nav2 nodes implement the reconfiguration interfaces required for MROS pilots
The text was updated successfully, but these errors were encountered: