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

Added troubleshooting flowcharts #277

Merged
merged 4 commits into from
Oct 21, 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Network IP Addresses
sidebar_position: 5
sidebar_position: 4
---

These are the standard addresses that Clearpath uses for custom robot configurations.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
title: Network Troubleshooting
sidebar_position: 6
---

The following troubleshooting flowcharts cover many of the most common troubleshooting issues with network integrity and ROS 2 communication using FastDDS.

### Network Integrity

The first step to troubleshooting your system networking is to verify the network integrity. Click on the image below to open in a new tab and explore the troubleshooting steps.

<center>
<a href={require("./img/network-integrity-troubleshooting-flowchart.png").default} target="_blank">
<figure>
<img
src={require("./img/network-integrity-troubleshooting-flowchart.png").default}
width="1000"
/>
</figure>
</a>
</center>

### ROS 2 Communication

Once network integrity is confirmed, the next step is to troubleshoot being able to publish and subscribe to ROS topics. The following flowchart covers the most common networking errors in Fast DDS. Many of these concepts are transferrable to other DDS implementations. Click on the image below to open in a new tab and explore the troubleshooting steps.

<center>
<a href={require("./img/ros2-comms-troubleshooting-flowchart.png").default} target="_blank">
<figure>
<img
src={require("./img/ros2-comms-troubleshooting-flowchart.png").default}
width="1000"
/>
</figure>
</a>
</center>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Configuring NTP
sidebar_position: 6
sidebar_position: 5
---

Network Time Protocol, or NTP, is a network protocol that allows computers on a network to synchronize their clocks
Expand Down
Loading