Skip to content

Minor RTI Connext DDS documentation improvements #5606

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

Open
wants to merge 2 commits into
base: rolling
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,30 @@ Clone the repository for ``rmw_connextdds`` into your ROS 2 workspace and select
$ cd ros2_ws
$ git clone -b {DISTRO} https://github.com/ros2/rmw_connextdds src/rmw_connextdds

Then, install necessary packages for RTI Connext DDS.

.. code-block:: console

$ cd ..
$ rosdep install --from src -i

Set up the environment to help colcon discover where RTI Connext is installed.
This can be done by manually setting the environment variable ``NDDSHOME`` to the location of the RTI Connext installation, or by using a script that comes with the RTI Connext installation:
This can be done by manually setting the environment variable ``NDDSHOME`` to the location of the RTI Connext installation, or by using a script that comes with the RTI Connext installation. For example, for version 7.3.0, you can run the following code to execute the helper script:

.. code-block:: console

$ source /opt/rti.com/rti_connext_dds-7.3.0/resource/scripts/rtisetenv_x64Linux4gcc7.3.0.bash

If the previous command failed, and you can't find the location of the RTI Connext installation, run this to find all Connext installations (and their corresponding helper scripts) in your system:

.. code-block:: console

$ source ${RTI_CONNEXT_INSTALL_LOCATION}/resource/scripts/rtisetenv_x64Linux4gcc7.3.0.bash
$ find /opt -name rtisetenv*.bash

.. note::

Replace ``.bash`` with your shell if you're not using bash.
Possible values are: ``rtisetenv*.bash``, ``rtisetenv*.sh``, ``rtisetenv*.zsh``, ``rtisetenv*.tcsh``.

Make sure you have the ROS 2 environment set up:

Expand Down