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
to wait for three matching subscriptions before starting to publish.
177
178
@@ -209,6 +210,18 @@ This means that static transforms are unconditionally published to the ``/tf_sta
209
210
This was the default behavior, and the behavior which the ``tf2_ros::TransformListener`` class expected before, so most code will not have to be changed.
210
211
Any code that was relying on ``robot_state_publisher`` to periodically publish static transforms to ``/tf`` will have to be updated to subscribe to ``/tf_static`` as a ``transient_local`` subscription instead.
211
212
213
+
214
+
rosidl_cmake
215
+
^^^^^^^^^^^^
216
+
217
+
Deprecation of ``rosidl_target_interfaces()``
218
+
"""""""""""""""""""""""""""""""""""""""""""""
219
+
220
+
The CMake function ``rosidl_target_interfaces()`` has been deprecated, and now issues a CMake warning when called.
221
+
Users wanting to use messages/services/actions in the same ROS package that generated them should instead call ``rosidl_get_typesupport_target()`` and then ``target_link_libraries()`` to make their targets depend on the returned typesupport target.
222
+
See https://github.com/ros2/rosidl/pull/606 for more details, and https://github.com/ros2/demos/pull/529 for an example of using the new function.
0 commit comments