diff --git a/2021summerOfCode/Summer_2021_Student_Program.html b/2021summerOfCode/Summer_2021_Student_Program.html
index 04cac7121..a58d8a075 100644
--- a/2021summerOfCode/Summer_2021_Student_Program.html
+++ b/2021summerOfCode/Summer_2021_Student_Program.html
@@ -908,6 +908,7 @@
Iron to Jazzy
diff --git a/2021summerOfCode/projects/assisted_teleop.html b/2021summerOfCode/projects/assisted_teleop.html
index 2d24d7809..eb316191d 100644
--- a/2021summerOfCode/projects/assisted_teleop.html
+++ b/2021summerOfCode/projects/assisted_teleop.html
@@ -908,6 +908,7 @@
Iron to Jazzy
diff --git a/2021summerOfCode/projects/create_configuration_assistant.html b/2021summerOfCode/projects/create_configuration_assistant.html
index d42004925..a07ec01a6 100644
--- a/2021summerOfCode/projects/create_configuration_assistant.html
+++ b/2021summerOfCode/projects/create_configuration_assistant.html
@@ -908,6 +908,7 @@
Iron to Jazzy
diff --git a/2021summerOfCode/projects/create_plugins.html b/2021summerOfCode/projects/create_plugins.html
index b947c404a..94c936129 100644
--- a/2021summerOfCode/projects/create_plugins.html
+++ b/2021summerOfCode/projects/create_plugins.html
@@ -908,6 +908,7 @@
Iron to Jazzy
diff --git a/2021summerOfCode/projects/dynamic.html b/2021summerOfCode/projects/dynamic.html
index 2b3167632..59d30f2d2 100644
--- a/2021summerOfCode/projects/dynamic.html
+++ b/2021summerOfCode/projects/dynamic.html
@@ -908,6 +908,7 @@
Iron to Jazzy
diff --git a/2021summerOfCode/projects/grid_maps.html b/2021summerOfCode/projects/grid_maps.html
index 3ce8478fd..f0ee43f89 100644
--- a/2021summerOfCode/projects/grid_maps.html
+++ b/2021summerOfCode/projects/grid_maps.html
@@ -908,6 +908,7 @@
Iron to Jazzy
diff --git a/2021summerOfCode/projects/localization.html b/2021summerOfCode/projects/localization.html
index 965dfe408..72ef63526 100644
--- a/2021summerOfCode/projects/localization.html
+++ b/2021summerOfCode/projects/localization.html
@@ -908,6 +908,7 @@
Iron to Jazzy
diff --git a/2021summerOfCode/projects/multithreading.html b/2021summerOfCode/projects/multithreading.html
index b2e22e07e..49f6c1be7 100644
--- a/2021summerOfCode/projects/multithreading.html
+++ b/2021summerOfCode/projects/multithreading.html
@@ -908,6 +908,7 @@
Iron to Jazzy
diff --git a/2021summerOfCode/projects/navigation_rebranding.html b/2021summerOfCode/projects/navigation_rebranding.html
index 33f7e71ec..6bfd390bd 100644
--- a/2021summerOfCode/projects/navigation_rebranding.html
+++ b/2021summerOfCode/projects/navigation_rebranding.html
@@ -908,6 +908,7 @@
Iron to Jazzy
diff --git a/2021summerOfCode/projects/safety_node.html b/2021summerOfCode/projects/safety_node.html
index 397cee629..8117f8b5c 100644
--- a/2021summerOfCode/projects/safety_node.html
+++ b/2021summerOfCode/projects/safety_node.html
@@ -908,6 +908,7 @@
Iron to Jazzy
diff --git a/2021summerOfCode/projects/semantics.html b/2021summerOfCode/projects/semantics.html
index f7f10acde..84624a1f0 100644
--- a/2021summerOfCode/projects/semantics.html
+++ b/2021summerOfCode/projects/semantics.html
@@ -908,6 +908,7 @@
Iron to Jazzy
diff --git a/2021summerOfCode/projects/spinners.html b/2021summerOfCode/projects/spinners.html
index d12d15ea5..06cc7a12e 100644
--- a/2021summerOfCode/projects/spinners.html
+++ b/2021summerOfCode/projects/spinners.html
@@ -908,6 +908,7 @@
Iron to Jazzy
diff --git a/2021summerOfCode/projects/testing.html b/2021summerOfCode/projects/testing.html
index f40677894..bd2a0c417 100644
--- a/2021summerOfCode/projects/testing.html
+++ b/2021summerOfCode/projects/testing.html
@@ -908,6 +908,7 @@
Iron to Jazzy
diff --git a/2021summerOfCode/projects/twist_n_config.html b/2021summerOfCode/projects/twist_n_config.html
index b3cb2dd92..c21ef00e1 100644
--- a/2021summerOfCode/projects/twist_n_config.html
+++ b/2021summerOfCode/projects/twist_n_config.html
@@ -908,6 +908,7 @@
Iron to Jazzy
diff --git a/_sources/configuration/packages/configuring-controller-server.rst.txt b/_sources/configuration/packages/configuring-controller-server.rst.txt
index aec76d6e4..8e8bb15e2 100644
--- a/_sources/configuration/packages/configuring-controller-server.rst.txt
+++ b/_sources/configuration/packages/configuring-controller-server.rst.txt
@@ -24,6 +24,17 @@ Parameters
Description
Frequency to run controller (Hz).
+:use_realtime_priority:
+
+ ============== =======
+ Type Default
+ -------------- -------
+ bool false
+ ============== =======
+
+ Description
+ Adds soft real-time priorization to the controller server to better ensure resources to time sensitive portions of the codebase. This will set the controller's execution thread to a higher priority than the rest of the system (``90``) to meet scheduling deadlines to have less missed loop rates. To use this feature, you use set the following inside of ``/etc/security/limits.conf`` to give userspace access to elevated prioritization permissions: `` soft rtprio 99 hard rtprio 99``
+
:action_server_result_timeout:
====== ======= =======
diff --git a/_sources/migration/Iron.rst.txt b/_sources/migration/Iron.rst.txt
index 72754a15d..739cd95f7 100644
--- a/_sources/migration/Iron.rst.txt
+++ b/_sources/migration/Iron.rst.txt
@@ -5,6 +5,17 @@ Iron to Jazzy
Moving from ROS 2 Iron to Jazzy, a number of stability improvements were added that we will not specifically address here.
+Introduction of Soft-Real Time Action Servers
+*********************************************
+
+`PR #3914 `_ adds soft real-time priorization to the controller server to better ensure resources to time sensitive portions of the codebase. The Simple Action Server now has a ``realtime`` input field exposed in the Controller Server via the parameter ``use_realtime_priority`` which will set the controller's execution thread to a higher priority than the rest of the system to meet scheduling deadlines. To use this feature, you use set the following inside of ``/etc/security/limits.conf`` to give userspace access to elevated prioritization permissions. This is currently only enabled in the Controller Server, who's execution thread is sensitive to scheduling priorities, but could be set with other threads in the future if found necessary.
+
+.. code-block:: text
+
+ soft rtprio 99
+ hard rtprio 99
+
+
Introduce a new Multi-Robot Bringup Launch
******************************************
@@ -117,4 +128,9 @@ The costmap activation fails when required transforms are not available
***********************************************************************
In this `PR #3866 `_ the parameter ``initial_transform_timeout`` is added to the costmap. The activation of the costmap now fails,
-if the transformation from the robot base frame to the global frame does not become available during this timeout.
\ No newline at end of file
+if the transformation from the robot base frame to the global frame does not become available during this timeout.
+
+Subtrees Obtain Shared Resources
+********************************
+
+`PR #3911 `_ gives all sub-trees in BT.CPP the same shared resources as the main tree (node, shared timeouts, etc).
diff --git a/about/index.html b/about/index.html
index f84a8083b..5c691ab00 100644
--- a/about/index.html
+++ b/about/index.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/about/related_projects.html b/about/related_projects.html
index 4fc8bd035..99836a228 100644
--- a/about/related_projects.html
+++ b/about/related_projects.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/about/robots.html b/about/robots.html
index 156aad325..63c0fd7b1 100644
--- a/about/robots.html
+++ b/about/robots.html
@@ -909,6 +909,7 @@
Iron to Jazzy
diff --git a/about/ros1_comparison.html b/about/ros1_comparison.html
index 60134b806..12f762c1f 100644
--- a/about/ros1_comparison.html
+++ b/about/ros1_comparison.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/behavior_trees/index.html b/behavior_trees/index.html
index 1619937ab..e98e6d967 100644
--- a/behavior_trees/index.html
+++ b/behavior_trees/index.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/behavior_trees/overview/detailed_behavior_tree_walkthrough.html b/behavior_trees/overview/detailed_behavior_tree_walkthrough.html
index 865d3d201..21cd7f9d4 100644
--- a/behavior_trees/overview/detailed_behavior_tree_walkthrough.html
+++ b/behavior_trees/overview/detailed_behavior_tree_walkthrough.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/behavior_trees/overview/nav2_specific_nodes.html b/behavior_trees/overview/nav2_specific_nodes.html
index eddea7fb2..ffc479786 100644
--- a/behavior_trees/overview/nav2_specific_nodes.html
+++ b/behavior_trees/overview/nav2_specific_nodes.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/behavior_trees/trees/follow_point.html b/behavior_trees/trees/follow_point.html
index d11aec001..428bb5360 100644
--- a/behavior_trees/trees/follow_point.html
+++ b/behavior_trees/trees/follow_point.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/behavior_trees/trees/nav_through_poses_recovery.html b/behavior_trees/trees/nav_through_poses_recovery.html
index a5fc11f64..56656dda1 100644
--- a/behavior_trees/trees/nav_through_poses_recovery.html
+++ b/behavior_trees/trees/nav_through_poses_recovery.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/behavior_trees/trees/nav_to_pose_and_pause_near_goal_obstacle.html b/behavior_trees/trees/nav_to_pose_and_pause_near_goal_obstacle.html
index 60c00e9a0..e80a1af88 100644
--- a/behavior_trees/trees/nav_to_pose_and_pause_near_goal_obstacle.html
+++ b/behavior_trees/trees/nav_to_pose_and_pause_near_goal_obstacle.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/behavior_trees/trees/nav_to_pose_recovery.html b/behavior_trees/trees/nav_to_pose_recovery.html
index da4961a9e..5049832de 100644
--- a/behavior_trees/trees/nav_to_pose_recovery.html
+++ b/behavior_trees/trees/nav_to_pose_recovery.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/behavior_trees/trees/nav_to_pose_with_consistent_replanning_and_if_path_becomes_invalid.html b/behavior_trees/trees/nav_to_pose_with_consistent_replanning_and_if_path_becomes_invalid.html
index 564bb9735..5a8513550 100644
--- a/behavior_trees/trees/nav_to_pose_with_consistent_replanning_and_if_path_becomes_invalid.html
+++ b/behavior_trees/trees/nav_to_pose_with_consistent_replanning_and_if_path_becomes_invalid.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/behavior_trees/trees/odometry_calibration.html b/behavior_trees/trees/odometry_calibration.html
index fc5f2b154..edd88014f 100644
--- a/behavior_trees/trees/odometry_calibration.html
+++ b/behavior_trees/trees/odometry_calibration.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/commander_api/index.html b/commander_api/index.html
index 153ec0073..b9432fde2 100644
--- a/commander_api/index.html
+++ b/commander_api/index.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/concepts/index.html b/concepts/index.html
index 5b32d42b6..7969f346c 100644
--- a/concepts/index.html
+++ b/concepts/index.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/index.html b/configuration/index.html
index 1da5e2df1..f90329e21 100644
--- a/configuration/index.html
+++ b/configuration/index.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/AssistedTeleop.html b/configuration/packages/bt-plugins/actions/AssistedTeleop.html
index 52e51e8f7..d8a85aba3 100644
--- a/configuration/packages/bt-plugins/actions/AssistedTeleop.html
+++ b/configuration/packages/bt-plugins/actions/AssistedTeleop.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/BackUp.html b/configuration/packages/bt-plugins/actions/BackUp.html
index 51b80ff92..0db049887 100644
--- a/configuration/packages/bt-plugins/actions/BackUp.html
+++ b/configuration/packages/bt-plugins/actions/BackUp.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/CancelAssistedTeleop.html b/configuration/packages/bt-plugins/actions/CancelAssistedTeleop.html
index 5e0bb8d88..0f5994c99 100644
--- a/configuration/packages/bt-plugins/actions/CancelAssistedTeleop.html
+++ b/configuration/packages/bt-plugins/actions/CancelAssistedTeleop.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/CancelBackUp.html b/configuration/packages/bt-plugins/actions/CancelBackUp.html
index 8d6498596..7ea0f1ddb 100644
--- a/configuration/packages/bt-plugins/actions/CancelBackUp.html
+++ b/configuration/packages/bt-plugins/actions/CancelBackUp.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/CancelControl.html b/configuration/packages/bt-plugins/actions/CancelControl.html
index 08805c375..6d630e32e 100644
--- a/configuration/packages/bt-plugins/actions/CancelControl.html
+++ b/configuration/packages/bt-plugins/actions/CancelControl.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/CancelDriveOnHeading.html b/configuration/packages/bt-plugins/actions/CancelDriveOnHeading.html
index a68f76f2f..722f42c42 100644
--- a/configuration/packages/bt-plugins/actions/CancelDriveOnHeading.html
+++ b/configuration/packages/bt-plugins/actions/CancelDriveOnHeading.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/CancelSpin.html b/configuration/packages/bt-plugins/actions/CancelSpin.html
index 6f0119c56..0c6a85d31 100644
--- a/configuration/packages/bt-plugins/actions/CancelSpin.html
+++ b/configuration/packages/bt-plugins/actions/CancelSpin.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/CancelWait.html b/configuration/packages/bt-plugins/actions/CancelWait.html
index c659d9edb..968c578de 100644
--- a/configuration/packages/bt-plugins/actions/CancelWait.html
+++ b/configuration/packages/bt-plugins/actions/CancelWait.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/ClearCostmapAroundRobot.html b/configuration/packages/bt-plugins/actions/ClearCostmapAroundRobot.html
index 607c62975..efb74ee21 100644
--- a/configuration/packages/bt-plugins/actions/ClearCostmapAroundRobot.html
+++ b/configuration/packages/bt-plugins/actions/ClearCostmapAroundRobot.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/ClearCostmapExceptRegion.html b/configuration/packages/bt-plugins/actions/ClearCostmapExceptRegion.html
index 6e0e0a3fc..d3718c6c3 100644
--- a/configuration/packages/bt-plugins/actions/ClearCostmapExceptRegion.html
+++ b/configuration/packages/bt-plugins/actions/ClearCostmapExceptRegion.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/ClearEntireCostmap.html b/configuration/packages/bt-plugins/actions/ClearEntireCostmap.html
index 69b52a536..f0351bb2e 100644
--- a/configuration/packages/bt-plugins/actions/ClearEntireCostmap.html
+++ b/configuration/packages/bt-plugins/actions/ClearEntireCostmap.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/ComputePathThroughPoses.html b/configuration/packages/bt-plugins/actions/ComputePathThroughPoses.html
index b0473301e..010c414cd 100644
--- a/configuration/packages/bt-plugins/actions/ComputePathThroughPoses.html
+++ b/configuration/packages/bt-plugins/actions/ComputePathThroughPoses.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/ComputePathToPose.html b/configuration/packages/bt-plugins/actions/ComputePathToPose.html
index 92cb75d18..3252757ef 100644
--- a/configuration/packages/bt-plugins/actions/ComputePathToPose.html
+++ b/configuration/packages/bt-plugins/actions/ComputePathToPose.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/ControllerSelector.html b/configuration/packages/bt-plugins/actions/ControllerSelector.html
index cb75a4cd8..de7f2fa99 100644
--- a/configuration/packages/bt-plugins/actions/ControllerSelector.html
+++ b/configuration/packages/bt-plugins/actions/ControllerSelector.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/DriveOnHeading.html b/configuration/packages/bt-plugins/actions/DriveOnHeading.html
index 0ecb45cad..89dab848f 100644
--- a/configuration/packages/bt-plugins/actions/DriveOnHeading.html
+++ b/configuration/packages/bt-plugins/actions/DriveOnHeading.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/FollowPath.html b/configuration/packages/bt-plugins/actions/FollowPath.html
index a6739d0f3..dcb955132 100644
--- a/configuration/packages/bt-plugins/actions/FollowPath.html
+++ b/configuration/packages/bt-plugins/actions/FollowPath.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/GoalCheckerSelector.html b/configuration/packages/bt-plugins/actions/GoalCheckerSelector.html
index 30f44208c..9f735e036 100644
--- a/configuration/packages/bt-plugins/actions/GoalCheckerSelector.html
+++ b/configuration/packages/bt-plugins/actions/GoalCheckerSelector.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/NavigateThroughPoses.html b/configuration/packages/bt-plugins/actions/NavigateThroughPoses.html
index 62cfe653b..a16597680 100644
--- a/configuration/packages/bt-plugins/actions/NavigateThroughPoses.html
+++ b/configuration/packages/bt-plugins/actions/NavigateThroughPoses.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/NavigateToPose.html b/configuration/packages/bt-plugins/actions/NavigateToPose.html
index a59b4b37a..6395c6a35 100644
--- a/configuration/packages/bt-plugins/actions/NavigateToPose.html
+++ b/configuration/packages/bt-plugins/actions/NavigateToPose.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/PlannerSelector.html b/configuration/packages/bt-plugins/actions/PlannerSelector.html
index 7905be844..4d756ec4d 100644
--- a/configuration/packages/bt-plugins/actions/PlannerSelector.html
+++ b/configuration/packages/bt-plugins/actions/PlannerSelector.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/ReinitializeGlobalLocalization.html b/configuration/packages/bt-plugins/actions/ReinitializeGlobalLocalization.html
index f7bc190d5..0ad5f043d 100644
--- a/configuration/packages/bt-plugins/actions/ReinitializeGlobalLocalization.html
+++ b/configuration/packages/bt-plugins/actions/ReinitializeGlobalLocalization.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/RemovePassedGoals.html b/configuration/packages/bt-plugins/actions/RemovePassedGoals.html
index b488574d6..45bc3fa90 100644
--- a/configuration/packages/bt-plugins/actions/RemovePassedGoals.html
+++ b/configuration/packages/bt-plugins/actions/RemovePassedGoals.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/Smooth.html b/configuration/packages/bt-plugins/actions/Smooth.html
index 75b5766ee..f4923d308 100644
--- a/configuration/packages/bt-plugins/actions/Smooth.html
+++ b/configuration/packages/bt-plugins/actions/Smooth.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/SmootherSelector.html b/configuration/packages/bt-plugins/actions/SmootherSelector.html
index 5572ec2e5..20988d26f 100644
--- a/configuration/packages/bt-plugins/actions/SmootherSelector.html
+++ b/configuration/packages/bt-plugins/actions/SmootherSelector.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/Spin.html b/configuration/packages/bt-plugins/actions/Spin.html
index 662f86070..47b70724a 100644
--- a/configuration/packages/bt-plugins/actions/Spin.html
+++ b/configuration/packages/bt-plugins/actions/Spin.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/TruncatePath.html b/configuration/packages/bt-plugins/actions/TruncatePath.html
index c582a383a..c26b0ac44 100644
--- a/configuration/packages/bt-plugins/actions/TruncatePath.html
+++ b/configuration/packages/bt-plugins/actions/TruncatePath.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/TruncatePathLocal.html b/configuration/packages/bt-plugins/actions/TruncatePathLocal.html
index fa4453b20..3ce4a83f5 100644
--- a/configuration/packages/bt-plugins/actions/TruncatePathLocal.html
+++ b/configuration/packages/bt-plugins/actions/TruncatePathLocal.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/actions/Wait.html b/configuration/packages/bt-plugins/actions/Wait.html
index bb30b72fc..b46c83cdb 100644
--- a/configuration/packages/bt-plugins/actions/Wait.html
+++ b/configuration/packages/bt-plugins/actions/Wait.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/conditions/AreErrorCodesPresent.html b/configuration/packages/bt-plugins/conditions/AreErrorCodesPresent.html
index bb173cca5..fefec1040 100644
--- a/configuration/packages/bt-plugins/conditions/AreErrorCodesPresent.html
+++ b/configuration/packages/bt-plugins/conditions/AreErrorCodesPresent.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/conditions/DistanceTraveled.html b/configuration/packages/bt-plugins/conditions/DistanceTraveled.html
index a00de9699..58d083c89 100644
--- a/configuration/packages/bt-plugins/conditions/DistanceTraveled.html
+++ b/configuration/packages/bt-plugins/conditions/DistanceTraveled.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/conditions/GloballyUpdatedGoal.html b/configuration/packages/bt-plugins/conditions/GloballyUpdatedGoal.html
index 835631857..2f02f0904 100644
--- a/configuration/packages/bt-plugins/conditions/GloballyUpdatedGoal.html
+++ b/configuration/packages/bt-plugins/conditions/GloballyUpdatedGoal.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/conditions/GoalReached.html b/configuration/packages/bt-plugins/conditions/GoalReached.html
index ee5e86553..c94324de4 100644
--- a/configuration/packages/bt-plugins/conditions/GoalReached.html
+++ b/configuration/packages/bt-plugins/conditions/GoalReached.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/conditions/GoalUpdated.html b/configuration/packages/bt-plugins/conditions/GoalUpdated.html
index ccd99dd27..f87dc7ce6 100644
--- a/configuration/packages/bt-plugins/conditions/GoalUpdated.html
+++ b/configuration/packages/bt-plugins/conditions/GoalUpdated.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/conditions/InitialPoseReceived.html b/configuration/packages/bt-plugins/conditions/InitialPoseReceived.html
index 51d626035..061c5c9d7 100644
--- a/configuration/packages/bt-plugins/conditions/InitialPoseReceived.html
+++ b/configuration/packages/bt-plugins/conditions/InitialPoseReceived.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/conditions/IsBatteryCharging.html b/configuration/packages/bt-plugins/conditions/IsBatteryCharging.html
index c3e0a05c2..7e0164e81 100644
--- a/configuration/packages/bt-plugins/conditions/IsBatteryCharging.html
+++ b/configuration/packages/bt-plugins/conditions/IsBatteryCharging.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/conditions/IsBatteryLow.html b/configuration/packages/bt-plugins/conditions/IsBatteryLow.html
index 1e11c6d9e..91c15a9dc 100644
--- a/configuration/packages/bt-plugins/conditions/IsBatteryLow.html
+++ b/configuration/packages/bt-plugins/conditions/IsBatteryLow.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/conditions/IsPathValid.html b/configuration/packages/bt-plugins/conditions/IsPathValid.html
index 5b8a4c79c..f02f70347 100644
--- a/configuration/packages/bt-plugins/conditions/IsPathValid.html
+++ b/configuration/packages/bt-plugins/conditions/IsPathValid.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/conditions/IsStuck.html b/configuration/packages/bt-plugins/conditions/IsStuck.html
index c92c12480..fe733107d 100644
--- a/configuration/packages/bt-plugins/conditions/IsStuck.html
+++ b/configuration/packages/bt-plugins/conditions/IsStuck.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/conditions/PathExpiringTimer.html b/configuration/packages/bt-plugins/conditions/PathExpiringTimer.html
index c14d6994d..71416b00a 100644
--- a/configuration/packages/bt-plugins/conditions/PathExpiringTimer.html
+++ b/configuration/packages/bt-plugins/conditions/PathExpiringTimer.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/conditions/TimeExpired.html b/configuration/packages/bt-plugins/conditions/TimeExpired.html
index add281934..7dc2dc709 100644
--- a/configuration/packages/bt-plugins/conditions/TimeExpired.html
+++ b/configuration/packages/bt-plugins/conditions/TimeExpired.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/conditions/TransformAvailable.html b/configuration/packages/bt-plugins/conditions/TransformAvailable.html
index f8c802195..861a7e407 100644
--- a/configuration/packages/bt-plugins/conditions/TransformAvailable.html
+++ b/configuration/packages/bt-plugins/conditions/TransformAvailable.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/conditions/WouldAControllerRecoveryHelp.html b/configuration/packages/bt-plugins/conditions/WouldAControllerRecoveryHelp.html
index 0243de1b7..19c153369 100644
--- a/configuration/packages/bt-plugins/conditions/WouldAControllerRecoveryHelp.html
+++ b/configuration/packages/bt-plugins/conditions/WouldAControllerRecoveryHelp.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/conditions/WouldAPlannerRecoveryHelp.html b/configuration/packages/bt-plugins/conditions/WouldAPlannerRecoveryHelp.html
index 3f3432e7e..1714fc68b 100644
--- a/configuration/packages/bt-plugins/conditions/WouldAPlannerRecoveryHelp.html
+++ b/configuration/packages/bt-plugins/conditions/WouldAPlannerRecoveryHelp.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/conditions/WouldASmootherRecoveryHelp.html b/configuration/packages/bt-plugins/conditions/WouldASmootherRecoveryHelp.html
index 8d18ae1cf..a2a364d27 100644
--- a/configuration/packages/bt-plugins/conditions/WouldASmootherRecoveryHelp.html
+++ b/configuration/packages/bt-plugins/conditions/WouldASmootherRecoveryHelp.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/controls/PipelineSequence.html b/configuration/packages/bt-plugins/controls/PipelineSequence.html
index 82e3ff18b..fcc889ca4 100644
--- a/configuration/packages/bt-plugins/controls/PipelineSequence.html
+++ b/configuration/packages/bt-plugins/controls/PipelineSequence.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/controls/RecoveryNode.html b/configuration/packages/bt-plugins/controls/RecoveryNode.html
index bca3aa857..d3ba6a073 100644
--- a/configuration/packages/bt-plugins/controls/RecoveryNode.html
+++ b/configuration/packages/bt-plugins/controls/RecoveryNode.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/controls/RoundRobin.html b/configuration/packages/bt-plugins/controls/RoundRobin.html
index 5d7ef5e86..ed3681f63 100644
--- a/configuration/packages/bt-plugins/controls/RoundRobin.html
+++ b/configuration/packages/bt-plugins/controls/RoundRobin.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/decorators/DistanceController.html b/configuration/packages/bt-plugins/decorators/DistanceController.html
index 2bfeb2d9e..5d392f9f0 100644
--- a/configuration/packages/bt-plugins/decorators/DistanceController.html
+++ b/configuration/packages/bt-plugins/decorators/DistanceController.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/decorators/GoalUpdater.html b/configuration/packages/bt-plugins/decorators/GoalUpdater.html
index 1150b895d..508147332 100644
--- a/configuration/packages/bt-plugins/decorators/GoalUpdater.html
+++ b/configuration/packages/bt-plugins/decorators/GoalUpdater.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/decorators/PathLongerOnApproach.html b/configuration/packages/bt-plugins/decorators/PathLongerOnApproach.html
index ac2eebd64..d4df4d7ed 100644
--- a/configuration/packages/bt-plugins/decorators/PathLongerOnApproach.html
+++ b/configuration/packages/bt-plugins/decorators/PathLongerOnApproach.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/decorators/RateController.html b/configuration/packages/bt-plugins/decorators/RateController.html
index e41cb480e..3d37f65fb 100644
--- a/configuration/packages/bt-plugins/decorators/RateController.html
+++ b/configuration/packages/bt-plugins/decorators/RateController.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/decorators/SingleTrigger.html b/configuration/packages/bt-plugins/decorators/SingleTrigger.html
index 91f8238ce..45b54d2af 100644
--- a/configuration/packages/bt-plugins/decorators/SingleTrigger.html
+++ b/configuration/packages/bt-plugins/decorators/SingleTrigger.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/bt-plugins/decorators/SpeedController.html b/configuration/packages/bt-plugins/decorators/SpeedController.html
index 4f77779ee..07dd8326f 100644
--- a/configuration/packages/bt-plugins/decorators/SpeedController.html
+++ b/configuration/packages/bt-plugins/decorators/SpeedController.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/collision_monitor/configuring-collision-detector-node.html b/configuration/packages/collision_monitor/configuring-collision-detector-node.html
index de3fce82b..6ab809a86 100644
--- a/configuration/packages/collision_monitor/configuring-collision-detector-node.html
+++ b/configuration/packages/collision_monitor/configuring-collision-detector-node.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/collision_monitor/configuring-collision-monitor-node.html b/configuration/packages/collision_monitor/configuring-collision-monitor-node.html
index 0612f0843..9ea606c22 100644
--- a/configuration/packages/collision_monitor/configuring-collision-monitor-node.html
+++ b/configuration/packages/collision_monitor/configuring-collision-monitor-node.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/configuring-amcl.html b/configuration/packages/configuring-amcl.html
index f36509c10..3fcfdd9b4 100644
--- a/configuration/packages/configuring-amcl.html
+++ b/configuration/packages/configuring-amcl.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/configuring-behavior-server.html b/configuration/packages/configuring-behavior-server.html
index fed74235d..5a83979c6 100644
--- a/configuration/packages/configuring-behavior-server.html
+++ b/configuration/packages/configuring-behavior-server.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/configuring-bt-navigator.html b/configuration/packages/configuring-bt-navigator.html
index 89da62489..d3e19aca3 100644
--- a/configuration/packages/configuring-bt-navigator.html
+++ b/configuration/packages/configuring-bt-navigator.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/configuring-bt-xml.html b/configuration/packages/configuring-bt-xml.html
index 58de34550..09aabe08b 100644
--- a/configuration/packages/configuring-bt-xml.html
+++ b/configuration/packages/configuring-bt-xml.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/configuring-collision-monitor.html b/configuration/packages/configuring-collision-monitor.html
index 76216be25..d6f042898 100644
--- a/configuration/packages/configuring-collision-monitor.html
+++ b/configuration/packages/configuring-collision-monitor.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/configuring-constrained-smoother.html b/configuration/packages/configuring-constrained-smoother.html
index c37ab0e8a..5b78a91dd 100644
--- a/configuration/packages/configuring-constrained-smoother.html
+++ b/configuration/packages/configuring-constrained-smoother.html
@@ -910,6 +910,7 @@
Iron to Jazzy
diff --git a/configuration/packages/configuring-controller-server.html b/configuration/packages/configuring-controller-server.html
index 5fe79195e..29aaf8332 100644
--- a/configuration/packages/configuring-controller-server.html
+++ b/configuration/packages/configuring-controller-server.html
@@ -910,6 +910,7 @@
Iron to Jazzy
@@ -1014,9 +1016,29 @@ Parameters