You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem
For software-only AP1 integration testing, full_system.launch.py can start perception, mapping, planning, and control, but the stack still needs odometry and actuation feedback publishers. Without those, planner/control can stall before hardware is available.
Changes
Add use_synthetic_odometry launch argument and forward it to mapping_pipeline.launch.py.
Updated this PR to also add use_synthetic_perception:=true. That forwards to mapping's synthetic perception publisher and disables real YOLO/UFLD for pure software smoke tests. Example now becomes:
os2 launch ap1_bringup full_system.launch.py use_synthetic_perception:=true use_synthetic_odometry:=true use_synthetic_actuation_feedback:=true.
Verified locally with the software smoke-test command after applying dependent branches locally:
os2 launch ap1_bringup full_system.launch.py use_synthetic_perception:=true use_synthetic_odometry:=true use_synthetic_actuation_feedback:=true. Observed /ap1/mapping/odometer, /ap1/mapping/entities, /ap1/mapping/lanes, /ap1/planning/target_path, /ap1/control/motor_power, and /ap1/control/turn_angle all publish.
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
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.
Problem
For software-only AP1 integration testing, full_system.launch.py can start perception, mapping, planning, and control, but the stack still needs odometry and actuation feedback publishers. Without those, planner/control can stall before hardware is available.
Changes
Example
ros2 launch ap1_bringup full_system.launch.py use_synthetic_odometry:=true use_synthetic_actuation_feedback:=true
Dependencies
Test plan