-
Notifications
You must be signed in to change notification settings - Fork 38
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
Fixing several bugs #181
Fixing several bugs #181
Conversation
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.
Hi,
There's a lot of changes in here that change default behaviour, right?
I propose a discussion of these including @Iranaphor
@GPrathap you can continue to work on this (or make a new branch for new features) but I'm reluctant to merge without a proper discussion first.
"goal_checker.xy_goal_tolerance": 0.78, | ||
"goal_checker.yaw_goal_tolerance": 0.25, | ||
"goal_checker.xy_goal_tolerance": 1.0, | ||
"goal_checker.yaw_goal_tolerance": 1.25, |
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.
I would argue this changes default behaviour?
@@ -60,7 +64,7 @@ def __init__(self): | |||
} | |||
|
|||
self.bt_tree_with_control_server_config = {} | |||
self.bt_tree_with_control_server_config[self.ROW_TRAVERSAL] = "dwb_core::DWBLocalPlanner" | |||
self.bt_tree_with_control_server_config[self.ROW_TRAVERSAL] = "teb_local_planner::TebLocalPlannerROS" |
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.
Again,.this changes default behaviour significantly?!
@@ -86,8 +86,9 @@ def __init__(self, name, mode): | |||
self.navigation_action_name = self.get_parameter_or("navigation_action_name", Parameter('str', Parameter.Type.STRING, self.ACTIONS.NAVIGATE_TO_POSE)).value | |||
self.navigation_actions = self.get_parameter_or("navigation_actions", Parameter('str', Parameter.Type.STRING_ARRAY, self.ACTIONS.navigation_actions)).value | |||
|
|||
self.use_nav2_follow_route = self.get_parameter_or("use_nav2_follow_route", Parameter('bool', Parameter.Type.BOOL, False)).value | |||
self.use_nav2_follow_route = self.get_parameter_or("use_nav2_follow_route", Parameter('bool', Parameter.Type.BOOL, True)).value |
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.
again,. changes default
What type of PR is this? (check all applicable)
Description
Fixing several bugs that occurred during testing
QA Instructions, Screenshots, Recordings
There is no new functionality was added.