-
Notifications
You must be signed in to change notification settings - Fork 669
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(vehicle_cmd_gate): enable filter with actual steer in manual mode #2717
feat(vehicle_cmd_gate): enable filter with actual steer in manual mode #2717
Conversation
…mode Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Codecov ReportBase: 11.57% // Head: 12.38% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #2717 +/- ##
==========================================
+ Coverage 11.57% 12.38% +0.80%
==========================================
Files 1303 1203 -100
Lines 90775 85242 -5533
Branches 23978 24121 +143
==========================================
+ Hits 10511 10558 +47
+ Misses 69270 63671 -5599
- Partials 10994 11013 +19
*This pull request uses carry forward flags. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
82b7c40
to
9c3518f
Compare
Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
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.
autowarefoundation#2717) * feature(vehicle_cmd_gate): enable filter with actual steer in manual mode Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com> * update parameters based on experiment Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com> * update launch Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com> * update param Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com> --------- Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
autowarefoundation#2717) * feature(vehicle_cmd_gate): enable filter with actual steer in manual mode Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com> * update parameters based on experiment Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com> * update launch Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com> * update param Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com> --------- Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
autowarefoundation#2717) * feature(vehicle_cmd_gate): enable filter with actual steer in manual mode Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com> * update parameters based on experiment Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com> * update launch Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com> * update param Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com> --------- Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Description
In manual mode, the filter must consider the current status (e.g. current steering angle) to prevent sudden movement when switching from manual to autonomous.
The current implementation only checks for the previous commands, which makes a large difference between the actual status and command, then results in the sudden movement of the steering and acceleration.
This PR only focuses on the steering behavior because longitudinal information can not be changed easily for other modules.
Related links
https://github.com/tier4/autoware_launch/pull/733
autowarefoundation/autoware_launch#189
Tests performed
Notes for reviewers
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.