-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Move dwb goal/progress checker plugins to nav2_controller #1857
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
Changes from 1 commit
d7979ee
2d466a8
73197ad
e271cd8
20ef7d5
6558ec8
2dfc4b9
9d93bae
30740cf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -155,8 +155,11 @@ When `plugins` parameter is not overridden, the following default plugins are lo | |
| | ----------| --------| ------------| | ||
| | controller_frequency | 20.0 | Frequency to run controller | | ||
| | progress_checker_plugin | "progress_checker" | Check the progress of the robot | | ||
| | progress_checker.plugin | "nav2_controller::SimpleProgressChecker" | Default plugin | | ||
|
||
| | goal_checker_plugin | "goal_checker" | Check if the goal has been reached | | ||
| | goal_checker.plugin | "nav2_controller::SimpleGoalChecker" | Default plugin | | ||
|
||
| | controller_plugins | ["FollowPath"] | List of mapped names for controller plugins for processing requests and parameters | | ||
| | FollowPath.plugin | "dwb_core::DWBLocalPlanner" | Default plugin | | ||
SteveMacenski marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| | min_x_velocity_threshold | 0.0001 | Minimum X velocity to use (m/s) | | ||
| | min_y_velocity_threshold | 0.0001 | Minimum Y velocity to use (m/s) | | ||
| | min_theta_velocity_threshold | 0.0001 | Minimum angular velocity to use (rad/s) | | ||
|
|
||
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.
Should we explain what is meant by progress?
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.
Can you provide a suggested text?
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.
Plugin used by the controller to check whether the robot has at least covered a set distance/displacement in a set amount of time, thus checking the progress of the robot. What do you think?
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.