Skip to content

Commit 1dea8e7

Browse files
committed
Update link targets
Signed-off-by: Andrea Sorbini <[email protected]>
1 parent 3592bbf commit 1dea8e7

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

README.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,27 +1006,27 @@ Connext installation by copying the file (or its contents) to
10061006
`ros2_qos_profiles.xml` contains a single QoS library named `ros2`, and containing
10071007
the following QoS profiles:
10081008
1009-
- [`ros2::rmw.ros_discovery_info`](#ros2--rmwros-discovery-info)
1010-
- [`ros2::rcl.node_parameters`](#ros2--rclnode-parameters)
1011-
- [`ros2::rcl.log`](#ros2--rcllog)
1012-
- [`ros2::rcl.builtin_endpoints`](#ros2--rclbuiltin-endpoints)
1013-
- [`ros2::rmw_connextdds.base_participant`](#ros2--rmw-connextddsbase-participant)
1014-
- [`ros2::rmw_connextdds.base_application`](#ros2--rmw-connextddsbase-application)
1015-
- [`ros2::rmw_connextdds.opt.large_data`](#ros2--rmw-connextddsoptlarge-data)
1016-
- [`ros2::rmw_connextdds.opt.unbounded_data`](#ros2--rmw-connextddsoptunbounded-data)
1017-
- [`ros2::rmw_connextdds.opt.content_filtered_topic_property`](#ros2--rmw-connextddsoptcontent-filtered-topic-property)
1018-
- [`ros2::rmw_connextdds.opt.localhost_only`](#ros2--rmw-connextddsoptlocalhost-only)
1019-
- [`ros2::rmw_connextdds.opt.fast_endpoint_discovery`](#ros2--rmw-connextddsoptfast-endpoint-discovery)
1020-
1021-
Most users should consider using profile [`ros2::rmw_connextdds.base_application`](#ros2--rmw-connextddsbase-application) as the base profile to begin
1009+
- [`ros2::rmw.ros_discovery_info`](#ros2rmwros_discovery_info)
1010+
- [`ros2::rcl.node_parameters`](#ros2rclnode_parameters)
1011+
- [`ros2::rcl.log`](#ros2rcllog)
1012+
- [`ros2::rcl.builtin_endpoints`](#ros2rclbuiltin_endpoints)
1013+
- [`ros2::rmw_connextdds.base_participant`](#ros2rmw_connextddsbase_participant)
1014+
- [`ros2::rmw_connextdds.base_application`](#ros2rmw_connextddsbase_application)
1015+
- [`ros2::rmw_connextdds.opt.large_data`](#ros2rmw_connextddsoptlarge_data)
1016+
- [`ros2::rmw_connextdds.opt.unbounded_data`](#ros2rmw_connextddsoptunbounded_data)
1017+
- [`ros2::rmw_connextdds.opt.content_filtered_topic_property`](#ros2rmw_connextddsoptcontent_filtered_topic_property)
1018+
- [`ros2::rmw_connextdds.opt.localhost_only`](#ros2rmw_connextddsoptlocalhost_only)
1019+
- [`ros2::rmw_connextdds.opt.fast_endpoint_discovery`](#ros2rmw_connextddsoptfast_endpoint_discovery)
1020+
1021+
Most users should consider using profile [`ros2::rmw_connextdds.base_application`](#ros2rmw_connextddsbase_application) as the base profile to begin
10221022
customization of the DDS QoS used by their applications.
10231023
10241024
This profile will provide the same QoS settings used by default by `rmw_connextdds`
10251025
(i.e. when no custom [runtime configuration](#rmw-runtime-configuration) is specified).
10261026
1027-
Alternatively, profiles [`ros2::rcl.builtin_endpoints`](#ros2--rclbuiltin-endpoints)
1028-
and [`ros2::rmw_connextdds.base_participant`](#ros2--rmw-connextddsbase-participant),
1029-
which are both already included in the inheritance chain of [`ros2::rmw_connextdds.base_application`](#ros2--rmw-connextddsbase-application), may be used directly
1027+
Alternatively, profiles [`ros2::rcl.builtin_endpoints`](#ros2rclbuiltin_endpoints)
1028+
and [`ros2::rmw_connextdds.base_participant`](#ros2rmw_connextddsbase_participant),
1029+
which are both already included in the inheritance chain of [`ros2::rmw_connextdds.base_application`](#ros2rmw_connextddsbase_application), may be used directly
10301030
to, respectively, configure the QoS of all "built-in" endpoints created by the
10311031
RMW and `rcl` layers, and to configure the QoS of the DomainParticipant created
10321032
by `rmw_connextdds`.
@@ -1078,9 +1078,9 @@ endpoints created by the RMW and `rcl` layers for every ROS 2 Node.
10781078
10791079
These "built-in" endpoints include:
10801080
1081-
- Endpoints on topic `"ros_discovery_info"` (configured using profile [`ros2::rmw.ros_discovery_info`](#ros2--rmwros-discovery-info)).
1082-
- Endpoints on topics used for node parameters (configured using profile [`ros2::rcl.node_parameters`](#ros2--rclnode-parameters)).
1083-
- Endpoints on the ROS logging topic `"rosout"` (configured using profile [`ros2::rcl.log`](#ros2--rcllog)).
1081+
- Endpoints on topic `"ros_discovery_info"` (configured using profile [`ros2::rmw.ros_discovery_info`](#ros2rmwros_discovery_info)).
1082+
- Endpoints on topics used for node parameters (configured using profile [`ros2::rcl.node_parameters`](#ros2rclnode_parameters)).
1083+
- Endpoints on the ROS logging topic `"rosout"` (configured using profile [`ros2::rcl.log`](#ros2rcllog)).
10841084
10851085
The parent profiles are applied using "topic filters" that select all required topics.
10861086
@@ -1109,7 +1109,7 @@ to the user to configure this policy as needed in their own profiles.
11091109
The asynchronous publish mode is still used for all "built-in" writers to allow them
11101110
to continue to operate like "out of the box", even when writing large messages.
11111111
1112-
You might also consider inheriting directly from profile [`ros2::rcl.builtin_endpoints`](#ros2--rclbuiltin-endpoints),
1112+
You might also consider inheriting directly from profile [`ros2::rcl.builtin_endpoints`](#ros2rclbuiltin_endpoints),
11131113
if you only want to configure the built-in endpoints but not the DomainParticipant QoS.
11141114
11151115
#### ros2::rmw_connextdds.opt.large_data

0 commit comments

Comments
 (0)