Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/control/controller/lat_controller.cc
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ bool LatController::LoadControlConf(const ControlConf *control_conf) {

ts_ = control_conf->lat_controller_conf().ts();
if (ts_ <= 0.0) {
AERROR << "[MPCController] Invalid control update interval.";
AERROR << "[LatController] Invalid control update interval.";
return false;
}
cf_ = control_conf->lat_controller_conf().cf();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ void SpeedBoundsDecider::RecordSTGraphDebug(
return;
}

st_graph_debug->set_name(Name());
for (const auto &boundary : st_graph_data.st_boundaries()) {
auto boundary_debug = st_graph_debug->add_boundary();
boundary_debug->set_name(boundary->id());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,7 @@ void STBoundsDecider::RecordSTGraphDebug(
return;
}

st_graph_debug->set_name(Name());
// Plot ST-obstacle boundaries.
for (const auto& boundary : st_graph_data) {
auto boundary_debug = st_graph_debug->add_boundary();
Expand Down