-
Notifications
You must be signed in to change notification settings - Fork 312
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(autoware_motion_velocity_obstacle_slow_down_module): params for obstacle stop and slow down modules #1330
feat(autoware_motion_velocity_obstacle_slow_down_module): params for obstacle stop and slow down modules #1330
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
ced38af
to
3973230
Compare
slow_down_obstacle_type: | ||
pointcloud: false |
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.
The module-related parameter should be in the module's yaml file.
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.
Done.
stop_obstacle_type: | ||
pointcloud: true | ||
|
||
enable_slow_down_planning: true |
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.
Previously, we can disable the obstacle_slow_down only with this flag, but now, we can do that by setting the following to false.
So please remove enable_slow_down_planning
.
default: "true" |
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.
Done
@@ -1,5 +1,17 @@ | |||
/**: | |||
ros__parameters: | |||
common: | |||
enable_debug_info: false |
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.
Now, we use RCLCPP_DEBUG instead of RCLCPP_INFO with enable_debug_info
, so please remove this flag.
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.
Done
@@ -1,5 +1,17 @@ | |||
/**: | |||
ros__parameters: | |||
common: | |||
enable_debug_info: false | |||
enable_calculation_time_info: false |
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.
Previously, we measured the processing time with a library StopWatch, but now we have a new library TimeKeeper which is a wrapper library of the StopWatch.
So, please remove enable_calculation_time_info
, and use TimeKeeper instead of the StopWatch in the implementation.
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.
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.
Done
35e45a0
to
46ba281
Compare
Reverting closure |
Signed-off-by: Arjun Jagdish Ram <[email protected]>
Signed-off-by: Arjun Jagdish Ram <[email protected]>
46ba281
to
1f500e0
Compare
Description
Adds params for autowarefoundation/autoware.universe#10112
How was this PR tested?
Results in autowarefoundation/autoware.universe#10112
Notes for reviewers
None.
Effects on system behavior
None.