Skip to content

Commit

Permalink
[JTC] Add note on goal_time=0 in docs (backport ros-controls#773)
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich committed Nov 30, 2023
1 parent 7d9d076 commit 49f8df8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions joint_trajectory_controller/doc/parameters.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ constraints.stopped_velocity_tolerance (double)

constraints.goal_time (double)
Maximally allowed tolerance for not reaching the end of the trajectory in a predefined time.
If set to zero, the controller will wait a potentially infinite amount of time.

Default: 0.0 (not checked)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ joint_trajectory_controller:
goal_time: {
type: double,
default_value: 0.0,
description: "Time tolerance for achieving trajectory goal before or after commanded time.",
description: "Time tolerance for achieving trajectory goal before or after commanded time.
If set to zero, the controller will wait a potentially infinite amount of time.",
validation: {
gt_eq: [0.0],
}
Expand Down

0 comments on commit 49f8df8

Please sign in to comment.