-
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
fix(autonomous_emergency_braking): fix debug marker visual bug #8611
fix(autonomous_emergency_braking): fix debug marker visual bug #8611
Conversation
Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com>
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #8611 +/- ##
==========================================
- Coverage 24.10% 24.09% -0.01%
==========================================
Files 1399 1401 +2
Lines 102455 102484 +29
Branches 38912 38915 +3
==========================================
+ Hits 24694 24696 +2
- Misses 75223 75250 +27
Partials 2538 2538
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
…arefoundation#8611) fix bug by using the collision data keeper Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com>
…arefoundation#8611) fix bug by using the collision data keeper Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com>
…arefoundation#8611) fix bug by using the collision data keeper Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com>
…arefoundation#8611) fix bug by using the collision data keeper Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com>
…arefoundation#8611) fix bug by using the collision data keeper Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com>
…arefoundation#8611) fix bug by using the collision data keeper Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com>
…arefoundation#8611) fix bug by using the collision data keeper Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com>
…arefoundation#8611) fix bug by using the collision data keeper Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com>
…arefoundation#8611) fix bug by using the collision data keeper Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com>
* add AEB updated module Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> * change back msgs and other things Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> * fix name of aeb in sys error monitor Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> * delete old AEB package Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> * feat(autonomous_emergency_braking): enable aeb with only one req path (autowarefoundation#8569) * make it so AEB works with only one req path type (imu or MPC) Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> * fix missing mpc path return Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> * add check Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> * modify no path msg Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> --------- Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> * fix(autonomous_emergency_braking): fix debug marker visual bug (autowarefoundation#8611) fix bug by using the collision data keeper Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> * docs(autonomous_emergency_braking): add missing params to README (autowarefoundation#8950) add missing params Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> * ci(pre-commit): autofix --------- Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
…arefoundation#8611) fix bug by using the collision data keeper Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com>
…arefoundation#8611) fix bug by using the collision data keeper Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com>
Description
In current OSS Autoware there is a visual bug that makes it so the rss distance is always 0. This is caused because the RSS distance is calculated AFTER the debug marker is published, this PR fixes the problem by calculating the distance first (which is saved on the collision_data_keeper_ member class) and then, using that data to publish the debug info.
Related links
Parent Issue:
How was this PR tested?
PSim
![cap- 2024-08-26-14-06-38](https://private-user-images.githubusercontent.com/25967964/361314273-101793e6-87f4-40ae-b95a-b86cf3bff2d4.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkzMzY3MDMsIm5iZiI6MTczOTMzNjQwMywicGF0aCI6Ii8yNTk2Nzk2NC8zNjEzMTQyNzMtMTAxNzkzZTYtODdmNC00MGFlLWI5NWEtYjg2Y2YzYmZmMmQ0LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTIlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjEyVDA1MDAwM1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTE2MzAyNDY3NGM4YjhjOGM3MTkyMmJlOTI0YzI3YjI0NDYzMWRkZTc5NGJlODZhMjFlMmQ1ZjkwNTIxOGFhMzAmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.E_SsRxpZ6kHGAqf1DdWkG1WaodYgdoxugoi0yh16lNY)
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.