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
Copy file name to clipboardExpand all lines: source/Concepts/Intermediate/About-RQt.rst
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,7 +81,3 @@ Further Reading
81
81
* ROS 2 Discourse `announcement of porting to ROS 2 <https://discourse.ros.org/t/rqt-in-ros2/6428>`__)
82
82
* `RQt for ROS 1 documentation <https://wiki.ros.org/rqt>`__
83
83
* Brief overview of RQt (from `a Willow Garage intern blog post <http://web.archive.org/web/20130518142837/http://www.willowgarage.com/blog/2012/10/21/ros-gui>`__)
Copy file name to clipboardExpand all lines: source/How-To-Guides/Using-Variants.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ In addition to the official variants, there may be metapackages for specific ins
15
15
Adding variants
16
16
---------------
17
17
18
-
Additional variants that are of general use to the ROS community can be proposed by contributing an update to `REP-2001 via pull request <https://github.com/ros-infrastructure/rep/blob/master/rep-2001.rst>`_ describing the packages included in the new variant.
18
+
Additional variants that are of general use to the ROS community can be proposed by contributing an update to `REP-2001 via pull request <https://github.com/openrobotics/reps/blob/main/_posts/rep-2001.md>`_ describing the packages included in the new variant.
19
19
Institution and robot specific variants can be published directly by their respective maintainers and no update to REP-2001 is required.
Copy file name to clipboardExpand all lines: source/Releases/Release-Lyrical-Luth.rst
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,12 @@ TODO
39
39
New features in this ROS 2 release
40
40
----------------------------------
41
41
42
+
``rosidl_python``
43
+
^^^^^^^^^^^^^^^^^
44
+
45
+
Passing in Python ``set`` objects into array or sequence fields is now deprecated.
46
+
Instead pass in something that implements ``collections.abc.Sequence`` most commonly a ``list``, ``tuple``, or a ``numpy.ndarray``. To be removed in ROS M.
Copy file name to clipboardExpand all lines: source/The-ROS2-Project/Governance.rst
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,14 @@ The day-to-day operations of the ROS PMC include managing the members and commit
37
37
38
38
For more details about the ROS PMC, please see the `Charter for the ROS Project <https://osralliance.org/staging/wp-content/uploads/2024/03/ros_project_charter.pdf>`__.
39
39
40
+
ROS Project Management Committee (PMC) Meetings
41
+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
42
+
43
+
Community members are encouraged to observe the ROS 2 PMC meetings and submit agenda items via a PMC constituent.
44
+
To add an item to the ROS PMC agenda please contact one of the ROS PMC constituents list below.
45
+
ROS PMC meetings are conducted using Zoom and presently occur every Tuesday at 17:00 UTC (09:00 PST / 12:00 EST / 18:00 CET / +1 02:00 JST).
46
+
To join the ROS PMC meeting please use the `link available in our official OSRA Google calendar <https://calendar.google.com/calendar/u/0/[email protected]&ctz=Etc%2FUTC>`__.
Copy file name to clipboardExpand all lines: source/The-ROS2-Project/ROSCon-Content.rst
+124-1Lines changed: 124 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,9 +10,132 @@ ROSCon Talks
10
10
The following `ROSCon <https://roscon.ros.org>`__ talks have been given on ROS 2 and provide information about the workings of ROS 2 and various demos:
11
11
12
12
.. tabs::
13
+
.. group-tab:: 2025
14
+
.. list-table::
15
+
:header-rows: 1
13
16
14
-
.. group-tab:: 2024
17
+
* - Title
18
+
- Links
19
+
* - Advancing Robot Learning with ROS 2
20
+
- `video <https://vimeo.com/1136158846>`__
21
+
* - ROS Project Update
22
+
- `video <https://vimeo.com/1136205502>`__
23
+
* - ros-controls Project Update
24
+
- `video <https://vimeo.com/1136205235>`__
25
+
* - On Use of Nav2 Route Server
26
+
- `video <https://vimeo.com/1136164030>`__
27
+
* - Seeing is Believing: Enhancing Robot Acceptance with Perception-Aware ...
28
+
- `video <https://vimeo.com/1136205031>`__
29
+
* - ⚡In-advance Lightning Talks⚡
30
+
- `video <https://vimeo.com/1136158488>`__
31
+
* - rmw_what❓ Implementing the ROS 2 Middleware Interface
32
+
- `video <https://vimeo.com/1136204122>`__
33
+
* - Zenoh Strikes Back: From a New Hope to Tier-1
34
+
- `video <https://vimeo.com/1136377715>`__
35
+
* - From DDS to Zenoh: Migrating the Dexory Autonomy ROS Stack—Configurati...
36
+
- `video <https://vimeo.com/1136375669>`__
37
+
* - Enhancing ROS 2 Communications: What's New in Fast DDS v3
auto subscription_callback_lambda = [this](std::shared_ptr<rclcpp::SerializedMessage> msg){
165
+
auto subscription_callback_lambda = [this](std::shared_ptr<const rclcpp::SerializedMessage> msg){
166
166
167
167
Within the subscription callback, the first thing to do is determine the time stamp to use for the stored message.
168
168
This can be anything appropriate to your data, but two common values are the time at which the data was produced, if known, and the time it is received.
0 commit comments