Skip to content

Commit 6d7cd0a

Browse files
fix(freespace_planner): fix parking trajectory errors and warnings when parking completed (#6696)
fix(freespace_planner): publish stop trajectory when completed to mitigate topic timeout Signed-off-by: AhmedEbrahim <ahmed.a.d.ebrahim@gmail.com>
1 parent 1ed6462 commit 6d7cd0a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

planning/freespace_planner/src/freespace_planner/freespace_planner_node.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,9 @@ void FreespacePlannerNode::onTimer()
430430
}
431431

432432
if (is_completed_) {
433+
partial_trajectory_.header = odom_->header;
434+
const auto stop_trajectory = createStopTrajectory(partial_trajectory_);
435+
trajectory_pub_->publish(stop_trajectory);
433436
return;
434437
}
435438

0 commit comments

Comments
 (0)