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
Introduces a new parameter `enable_overrun` to the controller manager,
allowing users to disable the overrun detection and warning mechanism.
This parameter defaults to true, maintaining the existing behavior.
Copy file name to clipboardExpand all lines: controller_manager/src/controller_manager_parameters.yaml
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,12 @@ controller_manager:
6
6
description: "The frequency of controller manager's real-time update loop. This loop reads states from hardware, updates controllers and writes commands to hardware."
7
7
}
8
8
9
+
enable_overrun: {
10
+
type: bool,
11
+
default_value: true,
12
+
description: "If true, the controller manager will detect timing overruns, log warnings, and adjust the next iteration time to compensate for missed cycles."
0 commit comments