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

[diff_drive_controller] Fixed typos in diff_drive_controller_paramete… (backport #822) #824

Merged
merged 1 commit into from
Nov 10, 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
Expand Up @@ -17,7 +17,7 @@ diff_drive_controller:
wheels_per_side: {
type: int,
default_value: 0,
description: "Number of wheels on each wide of the robot. This is important to take the wheels slip into account when multiple wheels on each side are present. If there are more wheels then control signals for each side, you should enter number or control signals. For example, Husky has two wheels on each side, but they use one control signal, in this case '1' is the correct value of the parameter.",
description: "Number of wheels on each side of the robot. This is important to take the wheels slip into account when multiple wheels on each side are present. If there are more wheels then control signals for each side, you should enter number for control signals. For example, Husky has two wheels on each side, but they use one control signal, in this case '1' is the correct value of the parameter.",
}
wheel_radius: {
type: double,
Expand Down Expand Up @@ -87,7 +87,7 @@ diff_drive_controller:
cmd_vel_timeout: {
type: double,
default_value: 0.5, # seconds
description: "Timeout after which input command on ``cmd_vel`` topic is considered staled.",
description: "Timeout in seconds, after which input command on ``cmd_vel`` topic is considered staled.",
}
publish_limited_velocity: {
type: bool,
Expand Down
Loading