-
Notifications
You must be signed in to change notification settings - Fork 664
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
feat(mission_planner): reroute for modified goal #3826
Conversation
Signed-off-by: yutaka <[email protected]>
Signed-off-by: yutaka <[email protected]>
Signed-off-by: yutaka <[email protected]>
Codecov ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@
## main #3826 +/- ##
==========================================
+ Coverage 14.11% 15.06% +0.95%
==========================================
Files 1438 1332 -106
Lines 101526 95069 -6457
Branches 27045 27045
==========================================
- Hits 14328 14326 -2
+ Misses 71513 65057 -6456
- Partials 15685 15686 +1
*This pull request uses carry forward flags. Click here to find out more.
☔ View full report in Codecov by Sentry. |
return; | ||
} | ||
|
||
if (mrm_route_ && mrm_route_->uuid == msg->uuid) { |
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.
if (mrm_route_ && mrm_route_->uuid == msg->uuid) { | |
if (is_emergency_ && mrm_route_ && mrm_route_->uuid == msg->uuid) { |
?
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.
maybe it is not needed if alwawy set mrm_route_ when emegency and clear mrm_route when not emegeryc.
Description
Add a function to enable rerouting when it receives a modified goal.
Related links
Tests performed
Planning Simulator
Notes for reviewers
Interface changes
No interface changes
Effects on system behavior
No effects
Pre-review checklist for the PR author
The PR author must check the checkboxes below when creating the PR.
In-review checklist for the PR reviewers
The PR reviewers must check the checkboxes below before approval.
Post-review checklist for the PR author
The PR author must check the checkboxes below before merging.
After all checkboxes are checked, anyone who has write access can merge the PR.