Skip to content

Commit

Permalink
Changing default int values to double in steering controller's yaml f…
Browse files Browse the repository at this point in the history
…ile (#927)

(cherry picked from commit 13a43c3)
  • Loading branch information
ARK3r authored and mergify[bot] committed Dec 13, 2023
1 parent 143b0a8 commit 20fe90a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
steering_controllers_library:
reference_timeout: {
type: double,
default_value: 1,
default_value: 1.0,
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.",
}

Expand Down Expand Up @@ -93,14 +93,14 @@ steering_controllers_library:

twist_covariance_diagonal: {
type: double_array,
default_value: [0, 7, 14, 21, 28, 35],
default_value: [0.0, 7.0, 14.0, 21.0, 28.0, 35.0],
description: "diagonal values of twist covariance matrix.",
read_only: false,
}

pose_covariance_diagonal: {
type: double_array,
default_value: [0, 7, 14, 21, 28, 35],
default_value: [0.0, 7.0, 14.0, 21.0, 28.0, 35.0],
description: "diagonal values of pose covariance matrix.",
read_only: false,
}
Expand Down

0 comments on commit 20fe90a

Please sign in to comment.