You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This list summarizes important changes between Galactic (previous) and Humble (current) releases, where changes to user code might be necessary.
6
+
7
+
.. note::
8
+
9
+
This list was created in July 2024, earlier changes are not included.
10
+
11
+
joint_trajectory_controller
12
+
*****************************
13
+
* Tolerances sent with the action goal were not used before, but are now processed and used for the upcoming action. (`#716 <https://github.com/ros-controls/ros2_controllers/pull/716>`_). Adaptions to the action goal might be necessary.
* Activate update of dynamic parameters (`#761 <https://github.com/ros-controls/ros2_controllers/pull/761>`_ and `#849 <https://github.com/ros-controls/ros2_controllers/pull/849>`_).
19
+
* Continue with last trajectory-point on success, instead of hold-position from current state (`#842 <https://github.com/ros-controls/ros2_controllers/pull/842>`_).
20
+
* Add console output for tolerance checks (`#932 <https://github.com/ros-controls/ros2_controllers/pull/932>`_):
21
+
22
+
.. code::
23
+
24
+
[tolerances]: State tolerances failed for joint 2:
25
+
[tolerances]: Position Error: 0.020046, Position Tolerance: 0.010000
26
+
[trajectory_controllers]: Aborted due goal_time_tolerance exceeding by 1.010000 seconds
27
+
28
+
* Goals are now cancelled in ``on_deactivate`` transition (`#962 <https://github.com/ros-controls/ros2_controllers/pull/962>`_).
29
+
* Empty trajectory messages are discarded (`#902 <https://github.com/ros-controls/ros2_controllers/pull/902>`_).
30
+
* Action field ``error_string`` is now filled with meaningful strings (`#887 <https://github.com/ros-controls/ros2_controllers/pull/887>`_).
31
+
* Angle wraparound behavior (continuous joints) was added from the current state to the first segment of the incoming trajectory (`#796 <https://github.com/ros-controls/ros2_controllers/pull/796>`_).
32
+
* Tolerances sent with the action goal are now processed and used for the action. (`#716 <https://github.com/ros-controls/ros2_controllers/pull/716>`_). For details, see the `JointTolerance message <https://github.com/ros-controls/control_msgs/blob/master/control_msgs/msg/JointTolerance.msg>`_:
33
+
34
+
.. code-block:: markdown
35
+
36
+
The tolerances specify the amount the position, velocity, and
37
+
accelerations can vary from the setpoints. For example, in the case
38
+
of trajectory control, when the actual position varies beyond
39
+
(desired position + position tolerance), the trajectory goal may
40
+
abort.
41
+
42
+
There are two special values for tolerances:
43
+
* 0 - The tolerance is unspecified and will remain at whatever the default is
44
+
* -1 - The tolerance is "erased". If there was a default, the joint will be
45
+
allowed to move without restriction.
46
+
47
+
pid_controller
48
+
************************
49
+
* 🚀 The PID controller was added 🎉 (`#434 <https://github.com/ros-controls/ros2_controllers/pull/434>`_).
50
+
51
+
steering_controllers_library
52
+
********************************
53
+
* Changing default int values to double in steering controller's yaml file. The controllers should now initialize successfully without specifying these parameters (`#927 <https://github.com/ros-controls/ros2_controllers/pull/927>`_).
Copy file name to clipboardExpand all lines: joint_trajectory_controller/doc/userdoc.rst
+15-1Lines changed: 15 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -153,7 +153,21 @@ Actions [#f1]_
153
153
154
154
The primary way to send trajectories is through the action interface, and should be favored when execution monitoring is desired.
155
155
156
-
Action goals allow to specify not only the trajectory to execute, but also (optionally) path and goal tolerances.
156
+
Action goals allow to specify not only the trajectory to execute, but also (optionally) path and goal tolerances. For details, see the `JointTolerance message <https://github.com/ros-controls/control_msgs/blob/master/control_msgs/msg/JointTolerance.msg>`_:
157
+
158
+
.. code-block:: markdown
159
+
160
+
The tolerances specify the amount the position, velocity, and
161
+
accelerations can vary from the setpoints. For example, in the case
162
+
of trajectory control, when the actual position varies beyond
163
+
(desired position + position tolerance), the trajectory goal may
164
+
abort.
165
+
166
+
There are two special values for tolerances:
167
+
* 0 - The tolerance is unspecified and will remain at whatever the default is
168
+
* -1 - The tolerance is "erased". If there was a default, the joint will be
169
+
allowed to move without restriction.
170
+
157
171
When no tolerances are specified, the defaults given in the parameter interface are used (see :ref:`parameters`).
158
172
If tolerances are violated during trajectory execution, the action goal is aborted, the client is notified, and the current position is held.
0 commit comments