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

Fix some internal links #33

Merged
merged 1 commit into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion source/How-To-Guides/Getting-Backtraces-in-ROS-2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ Alternatively, if your node of interest is being launched in these files directl

In this case you may need to remap or provide parameter files to this node if it was previously provided by the launch file.
Using ``--ros-args`` you can give it the path to the new parameters file, remaps, or names.
See :doc:`this tutorial <../../How-To-Guides/Node-arguments>` for the commandline arguments required.
See :doc:`this tutorial <../How-To-Guides/Node-arguments>` for the commandline arguments required.

We understand this can be a pain, so it might encourage you to rather have each node possible as a separately included launch file to make debugging easier.
An example set of arguments might be ``--ros-args -r __node:=<node_name> --params-file /absolute/path/to/params.yaml`` (as a template).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ Finally we have the ``main`` method, which constructs a ``MinimalClientAsync`` o
.. warning::

Do not use ``rclpy.spin_until_future_complete`` in a ROS 2 callback.
For more details see the :doc:`sync deadlock article <../../../How-To-Guides/Sync-Vs-Async>`.
For more details see the :doc:`sync deadlock article <../../How-To-Guides/Sync-Vs-Async>`.

3.2 Add an entry point
~~~~~~~~~~~~~~~~~~~~~~
Expand Down