Base station launch#102
Merged
ConnorNeed merged 2 commits intomainfrom May 7, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR trims the base-station bringup to remove hardware nodes intended to run on a Raspberry Pi and updates the rover startup script so the foreground Docker process replaces the shell process.
Changes:
- Removed the GPS RTCM publisher and antenna RoboClaw node from
bringup’s base-station launch file. - Kept the base-station launch focused on joystick, video streaming, and rosbridge.
- Changed
setup/start_rover.shtoexecthedocker runfor the container launcher.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
src/Bringup/launch/basestation.launch.py |
Removes two hardware-related ROS nodes from the base-station bringup launch. |
setup/start_rover.sh |
Replaces the shell with the foreground docker run process for the container launcher. |
Comments suppressed due to low confidence (2)
src/Bringup/launch/basestation.launch.py:23
- This removal means
ros2 launch bringup basestation.launch.pyno longer starts any RTCM/base-station GPS publisher. The only remainingrtcm_pub_nodelaunch issrc/Nav/gps/launch/basestation.launch.py, and nothing in this repo includes it, so base-station correction data will disappear unless an out-of-repo RPi bringup is deployed in lockstep.
IncludeLaunchDescription(
PythonLaunchDescriptionSource(
os.path.join(
get_package_share_directory("joystick_control"),
"launch",
"controller.launch.py",
)
)
),
src/Bringup/launch/basestation.launch.py:23
- After deleting the two
Nodeactions,launch_ros.actionsis now unused in this module. The bringup package runsament_flake8, so this file will start failing lint with an unused-import error until that import is removed.
IncludeLaunchDescription(
PythonLaunchDescriptionSource(
os.path.join(
get_package_share_directory("joystick_control"),
"launch",
"controller.launch.py",
)
)
),
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Member
Author
|
d98e566 to
1ead955
Compare
1ead955 to
26f05a1
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 the nodes that will be launched on the RPi from the base station launch.
Added the exec to have systemctl stop work smoother as discussed last night