-
Notifications
You must be signed in to change notification settings - Fork 682
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(lane_change): enable force execution under unsafe conditions #8131
feat(lane_change): enable force execution under unsafe conditions #8131
Conversation
Signed-off-by: Go Sakayori <go.sakayori@tier4.jp>
Signed-off-by: Go Sakayori <go.sakayori@tier4.jp>
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
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.
LGTM
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #8131 +/- ##
==========================================
- Coverage 29.12% 29.11% -0.01%
==========================================
Files 1609 1610 +1
Lines 118111 118149 +38
Branches 50847 50851 +4
==========================================
+ Hits 34397 34400 +3
- Misses 74492 74526 +34
- Partials 9222 9223 +1
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
…towarefoundation#8131) add force execution conditions Signed-off-by: Go Sakayori <go.sakayori@tier4.jp>
…towarefoundation#8131) add force execution conditions Signed-off-by: Go Sakayori <go.sakayori@tier4.jp>
…towarefoundation#8131) add force execution conditions Signed-off-by: Go Sakayori <go.sakayori@tier4.jp>
…towarefoundation#8131) add force execution conditions Signed-off-by: Go Sakayori <go.sakayori@tier4.jp>
…towarefoundation#8131) add force execution conditions Signed-off-by: Go Sakayori <go.sakayori@tier4.jp>
…towarefoundation#8131) add force execution conditions Signed-off-by: Go Sakayori <go.sakayori@tier4.jp>
…towarefoundation#8131) add force execution conditions Signed-off-by: Go Sakayori <go.sakayori@tier4.jp>
…towarefoundation#8131) add force execution conditions Signed-off-by: Go Sakayori <go.sakayori@tier4.jp>
…towarefoundation#8131) add force execution conditions Signed-off-by: Go Sakayori <go.sakayori@tier4.jp>
Description
When lane change was force activated by operators under unsafe condition, the lane change path was canceled inside the module. When force activated it should activate the maneuver until it succeeds the lane change regardless to the safe/unsafe judgement inside the module. This PR enables full lane change once the the module is force activated via RTC.
Related links
The force activate judgment is implemented in the RTC interface, in the PR below.
Force static obstacle avoidance: #8094
How was this PR tested?
PSim
Before: It is canceled every time it is force activated
Screencast from 2024年07月22日 18時01分26秒.webm
After: Once activated it finishes the lane change maneuver.
Screencast from 2024年07月22日 18時16分26秒.webm
No degrade in TIER IV internal test
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.