We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Full stop condition judgement in mpc_controller.cc [here] in Apollo 10.0.1
if (std::abs(debug->path_remain()) < FLAGS_max_acceleration_when_stopped) { debug->set_is_full_stop(true); ADEBUG << "Into full stop within path remain, " << "is_full_stop is " << debug->is_full_stop(); }
should be
if (std::abs(debug->path_remain()) < FLAGS_max_path_remain_when_stopped) { // corrected debug->set_is_full_stop(true); ADEBUG << "Into full stop within path remain, " << "is_full_stop is " << debug->is_full_stop(); }
The text was updated successfully, but these errors were encountered:
Got,thx for your feedback ~
Sorry, something went wrong.
No branches or pull requests
Full stop condition judgement in mpc_controller.cc [here] in Apollo 10.0.1
should be
The text was updated successfully, but these errors were encountered: