Skip to content

Commit 13a43c3

Browse files
authored
Changing default int values to double in steering controller's yaml file (#927)
1 parent 2bcff2f commit 13a43c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

steering_controllers_library/src/steering_controllers_library.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
steering_controllers_library:
22
reference_timeout: {
33
type: double,
4-
default_value: 1,
4+
default_value: 1.0,
55
description: "Timeout for controller references after which they will be reset. This is especially useful for controllers that can cause unwanted and dangerous behaviour if reference is not reset, e.g., velocity controllers. If value is 0 the reference is reset after each run.",
66
}
77

@@ -93,14 +93,14 @@ steering_controllers_library:
9393

9494
twist_covariance_diagonal: {
9595
type: double_array,
96-
default_value: [0, 7, 14, 21, 28, 35],
96+
default_value: [0.0, 7.0, 14.0, 21.0, 28.0, 35.0],
9797
description: "diagonal values of twist covariance matrix.",
9898
read_only: false,
9999
}
100100

101101
pose_covariance_diagonal: {
102102
type: double_array,
103-
default_value: [0, 7, 14, 21, 28, 35],
103+
default_value: [0.0, 7.0, 14.0, 21.0, 28.0, 35.0],
104104
description: "diagonal values of pose covariance matrix.",
105105
read_only: false,
106106
}

0 commit comments

Comments
 (0)