Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changing default int values to double in steering controller's yaml file (backport #927) #929

Merged
merged 1 commit into from
Dec 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading