Anthony/455 ros2 on navtube - #504
Open
atorrell24 wants to merge 4 commits into
Open
Conversation
The imu-socat alias created a /dev/ttyV0 pseudo-terminal that tunneled the navtube Pi's IMU serial stream over TCP so the vectornav node could run on the Jetson. joe_shmore.py existed only to babysit that fake port, flushing its buffers when nothing held it open. Per #455, vectornav will run directly on the Pi and read the IMU's real local serial device, publishing over ROS 2 topics (DDS handles the cross-machine transport). That makes both the socat tunnel and its keepalive obsolete, so this removes them. Still pending: the serial port in the vectornav submodule config (/dev/ttyV0 -> real device path) is not changed yet, since it needs the actual device path from the Pi and a decision on where that override should live.
Open
atorrell24
force-pushed
the
Anthony/455-ros2-on-navtube
branch
from
June 20, 2026 23:15
17cf44f to
cbcab7b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Remove socat IMU bridge ahead of Pi migration
Part of #455.
Removes the imu-socat alias from scripts/setup.bash and deletes joe_shmore.py. Both existed only to support the /dev/ttyV0 pseudo-terminal that tunneled the navtube Pi's IMU serial over TCP so vectornav could run on the Jetson. Once vectornav runs on the Pi reading the real local serial device (rest of #455), the tunnel and its buffer-flush keepalive are obsolete.
Still pending / not in this PR: the serial port in the vectornav submodule config (/dev/ttyV0 → real device path) — needs the actual path from the Pi and a decision on where the override should live. Tracking in #455.