-
Notifications
You must be signed in to change notification settings - Fork 569
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: ensure attached objects update during motion execution #3327
base: main
Are you sure you want to change the base?
fix: ensure attached objects update during motion execution #3327
Conversation
- Check that attached objects in the monitored robot match those in the planned trajectory. - If an object disappears from the monitored robot, remove it from the trajectory waypoint robot_state. - If an object is attached to the monitored robot but missing in the trajectory, add it to enable meaningful collision checking.
Codecov ReportAttention: Patch coverage is
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## main #3327 +/- ##
==========================================
- Coverage 45.97% 45.57% -0.39%
==========================================
Files 716 716
Lines 62477 62491 +14
Branches 7564 7572 +8
==========================================
- Hits 28715 28475 -240
- Misses 33594 33850 +256
+ Partials 168 166 -2 ☔ View full report in Codecov by Sentry. |
style: `sample_attached_object` -> `sample_attached_objects`
…queried based on their consistency in the planned trajectory. --- Before entering the monitoring phase, it checks whether the attached objects remain consistent throughout the trajectory. If they do, they are stored and later used by the isRemainingPathValid method without needing to be queried again. If the attached objects change during the planned trajectory, the map is left empty, signaling isRemainingPathValid to query them at each waypoint.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mostly looks good to me, with some minor comments!
Also tagged a few other maintainers for a second look.
Description
Implications
This could impact a few different situations: