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
Copy file name to clipboardExpand all lines: controller_manager/src/controller_manager_parameters.yaml
+48-12Lines changed: 48 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -14,68 +14,104 @@ controller_manager:
14
14
warn: {
15
15
type: double,
16
16
default_value: 5.0,
17
-
description: "The warning threshold for the mean error of the controller manager's periodicity. If the mean error exceeds this threshold, a warning diagnostic will be published."
17
+
description: "The warning threshold for the mean error of the controller manager's periodicity. If the mean error exceeds this threshold, a warning diagnostic will be published.",
18
+
validation: {
19
+
gt<>: 0.0,
20
+
}
18
21
}
19
22
error: {
20
23
type: double,
21
24
default_value: 10.0,
22
-
description: "The error threshold for the mean error of the controller manager's periodicity. If the mean error exceeds this threshold, an error diagnostic will be published."
25
+
description: "The error threshold for the mean error of the controller manager's periodicity. If the mean error exceeds this threshold, an error diagnostic will be published.",
26
+
validation: {
27
+
gt<>: 0.0,
28
+
}
23
29
}
24
30
standard_deviation:
25
31
warn: {
26
32
type: double,
27
33
default_value: 5.0,
28
-
description: "The warning threshold for the standard deviation of the controller manager's periodicity. If the standard deviation exceeds this threshold, a warning diagnostic will be published."
34
+
description: "The warning threshold for the standard deviation of the controller manager's periodicity. If the standard deviation exceeds this threshold, a warning diagnostic will be published.",
35
+
validation: {
36
+
gt<>: 0.0,
37
+
}
29
38
}
30
39
error: {
31
40
type: double,
32
41
default_value: 10.0,
33
-
description: "The error threshold for the standard deviation of the controller manager's periodicity. If the standard deviation exceeds this threshold, an error diagnostic will be published."
42
+
description: "The error threshold for the standard deviation of the controller manager's periodicity. If the standard deviation exceeds this threshold, an error diagnostic will be published.",
43
+
validation: {
44
+
gt<>: 0.0,
45
+
}
34
46
}
35
47
controllers:
36
48
periodicity:
37
49
mean_error:
38
50
warn: {
39
51
type: double,
40
52
default_value: 5.0,
41
-
description: "The warning threshold for the mean error of the controller update loop. If the mean error exceeds this threshold, a warning diagnostic will be published. This diagnostics will be published only for the asynchronous controllers, because any affect to the synchronous controllers will be reflected directly in the controller manager's periodicity."
53
+
description: "The warning threshold for the mean error of the controller update loop. If the mean error exceeds this threshold, a warning diagnostic will be published. This diagnostics will be published only for the asynchronous controllers, because any affect to the synchronous controllers will be reflected directly in the controller manager's periodicity.",
54
+
validation: {
55
+
gt<>: 0.0,
56
+
}
42
57
}
43
58
error: {
44
59
type: double,
45
60
default_value: 10.0,
46
-
description: "The error threshold for the mean error of the controller update loop. If the mean error exceeds this threshold, an error diagnostic will be published. This diagnostics will be published only for the asynchronous controllers, because any affect to the synchronous controllers will be reflected directly in the controller manager's periodicity."
61
+
description: "The error threshold for the mean error of the controller update loop. If the mean error exceeds this threshold, an error diagnostic will be published. This diagnostics will be published only for the asynchronous controllers, because any affect to the synchronous controllers will be reflected directly in the controller manager's periodicity.",
62
+
validation: {
63
+
gt<>: 0.0,
64
+
}
47
65
}
48
66
standard_deviation:
49
67
warn: {
50
68
type: double,
51
69
default_value: 5.0,
52
-
description: "The warning threshold for the standard deviation of the controller update loop. If the standard deviation exceeds this threshold, a warning diagnostic will be published. This diagnostics will be published only for the asynchronous controllers, because any affect to the synchronous controllers will be reflected directly in the controller manager's periodicity."
70
+
description: "The warning threshold for the standard deviation of the controller update loop. If the standard deviation exceeds this threshold, a warning diagnostic will be published. This diagnostics will be published only for the asynchronous controllers, because any affect to the synchronous controllers will be reflected directly in the controller manager's periodicity.",
71
+
validation: {
72
+
gt<>: 0.0,
73
+
}
53
74
}
54
75
error: {
55
76
type: double,
56
77
default_value: 10.0,
57
-
description: "The error threshold for the standard deviation of the controller update loop. If the standard deviation exceeds this threshold, an error diagnostic will be published. This diagnostics will be published only for the asynchronous controllers, because any affect to the synchronous controllers will be reflected directly in the controller manager's periodicity."
78
+
description: "The error threshold for the standard deviation of the controller update loop. If the standard deviation exceeds this threshold, an error diagnostic will be published. This diagnostics will be published only for the asynchronous controllers, because any affect to the synchronous controllers will be reflected directly in the controller manager's periodicity.",
79
+
validation: {
80
+
gt<>: 0.0,
81
+
}
58
82
}
59
83
execution_time:
60
84
mean_error:
61
85
warn: {
62
86
type: double,
63
87
default_value: 1000.0,
64
-
description: "The warning threshold for the mean error of the controller's update cycle execution time in microseconds. If the mean error exceeds this threshold, a warning diagnostic will be published. The ``mean_error`` for a synchronous controller will be computed against zero, as it should be as low as possible. However, the ``mean_error`` for an asynchronous controller will be computed against the controller's desired update period, as the controller can take a maximum of the desired period cycle to execute it's update cycle"
88
+
description: "The warning threshold for the mean error of the controller's update cycle execution time in microseconds. If the mean error exceeds this threshold, a warning diagnostic will be published. The ``mean_error`` for a synchronous controller will be computed against zero, as it should be as low as possible. However, the ``mean_error`` for an asynchronous controller will be computed against the controller's desired update period, as the controller can take a maximum of the desired period cycle to execute it's update cycle",
89
+
validation: {
90
+
gt<>: 0.0,
91
+
}
65
92
}
66
93
error: {
67
94
type: double,
68
95
default_value: 2000.0,
69
-
description: "The error threshold for the mean error of the controller's update cycle execution time in microseconds. If the mean error exceeds this threshold, an error diagnostic will be published. The ``mean_error`` for a synchronous controller will be computed against zero, as it should be as low as possible. However, the ``mean_error`` for an asynchronous controller will be computed against the controller's desired update period, as the controller can take a maximum of the desired period cycle to execute it's update cycle"
96
+
description: "The error threshold for the mean error of the controller's update cycle execution time in microseconds. If the mean error exceeds this threshold, an error diagnostic will be published. The ``mean_error`` for a synchronous controller will be computed against zero, as it should be as low as possible. However, the ``mean_error`` for an asynchronous controller will be computed against the controller's desired update period, as the controller can take a maximum of the desired period cycle to execute it's update cycle",
97
+
validation: {
98
+
gt<>: 0.0,
99
+
}
70
100
}
71
101
standard_deviation:
72
102
warn: {
73
103
type: double,
74
104
default_value: 100.0,
75
-
description: "The warning threshold for the standard deviation of the controller's update cycle execution time. If the standard deviation exceeds this threshold, a warning diagnostic will be published."
105
+
description: "The warning threshold for the standard deviation of the controller's update cycle execution time. If the standard deviation exceeds this threshold, a warning diagnostic will be published.",
106
+
validation: {
107
+
gt<>: 0.0,
108
+
}
76
109
}
77
110
error: {
78
111
type: double,
79
112
default_value: 200.0,
80
-
description: "The error threshold for the standard deviation of the controller's update cycle execution time. If the standard deviation exceeds this threshold, an error diagnostic will be published."
113
+
description: "The error threshold for the standard deviation of the controller's update cycle execution time. If the standard deviation exceeds this threshold, an error diagnostic will be published.",
0 commit comments