-
Notifications
You must be signed in to change notification settings - Fork 8
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
Update Readme.md #45
Update Readme.md #45
Conversation
Add a step to pull all submodules
src/navigation/navigation.cc
Outdated
@@ -533,6 +533,7 @@ bool Navigation::GetCarrot(Vector2f& carrot) { | |||
// V2COMP(robot_loc_), V2COMP(v0), V2COMP(v1), (v0 - v1).norm()); | |||
const int num_intersections = geometry::CircleLineIntersection<float>( | |||
robot_loc_, params_.carrot_dist, v0, v1, &r0, &r1); | |||
//TODO Bugfix: say set a nav goal -> goal reached -> switched to manual and start moving -> as soon as its gets away from the prev nav target, the following error starts continuously printing. So once nav target reached this following line should not be done. |
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.
You didn't want to commit this with this PR, did you?
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.
Oh I didn't want to create a separate PR for such a little thing. Hence included it with this. Is there any issue with it?
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 actually did not understand this issue, could you move this to the issue tracker? https://github.com/ut-amrl/graph_navigation/issues
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.
Removed the todo from navigation.cc and moved it to #46
src/navigation/navigation.cc
Outdated
@@ -533,6 +533,7 @@ bool Navigation::GetCarrot(Vector2f& carrot) { | |||
// V2COMP(robot_loc_), V2COMP(v0), V2COMP(v1), (v0 - v1).norm()); | |||
const int num_intersections = geometry::CircleLineIntersection<float>( | |||
robot_loc_, params_.carrot_dist, v0, v1, &r0, &r1); | |||
//TODO Bugfix: say set a nav goal -> goal reached -> switched to manual and start moving -> as soon as its gets away from the prev nav target, the following error starts continuously printing. So once nav target reached this following line should not be done. |
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 actually did not understand this issue, could you move this to the issue tracker? https://github.com/ut-amrl/graph_navigation/issues
Moved the todo to an issue #46
Add a step to pull all submodules