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

add extended timer information of rcl/rclcpp for jazzy release note. #4455

Merged
merged 2 commits into from
May 15, 2024
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
16 changes: 16 additions & 0 deletions source/Releases/Release-Jazzy-Jalisco.rst
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,14 @@ See https://github.com/ros2/geometry2/pull/646 for more information.
``rcl``
^^^^^^^

Actual and expected call time when timer is called
""""""""""""""""""""""""""""""""""""""""""""""""""

New timer API ``rcl_timer_call_with_info`` is added to collect actual and expected call time when the timer is called.
This allows users to get the timer information when the timer is expected to be called and actual time that timer is called.

See https://github.com/ros2/rcl/pull/1113 for more details.

Improved rcl_wait in the area of timeout computation and spurious wakeups
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

Expand Down Expand Up @@ -437,6 +445,14 @@ Back in Humble, subscription signatures of the form ``void callback(std::shared_
In Jazzy, these subscription signatures have been removed.
Users should switch to using ``void callback(std::shared_ptr<const MessageT>)`` or ``void callback(std::shared_ptr<const MessageT>, const rclcpp MessageInfo &)``.

Actual and expected call time when timer is called
""""""""""""""""""""""""""""""""""""""""""""""""""

``rclcpp::TimerInfo`` argument is added to the timer callback to collect actual and expected call time when the timer is called.
This allows users to get the timer information when the timer is expected to be called and actual time that timer is called.

See https://github.com/ros2/rclcpp/pull/2343 for more details.

``rclcpp_action``
^^^^^^^^^^^^^^^^^

Expand Down
Loading