Skip to content

Commit

Permalink
fix(start_planner): fix start planner is_stopped (autowarefoundation#…
Browse files Browse the repository at this point in the history
…3973)

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
  • Loading branch information
kosuke55 committed Sep 12, 2023
1 parent f28e230 commit 27eb33c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ bool StartPlannerModule::isExecutionRequested() const
}

const bool is_stopped = utils::l2Norm(planner_data_->self_odometry->twist.twist.linear) <
parameters_->th_arrived_distance;
parameters_->th_stopped_velocity;
if (!is_stopped) {
#ifdef USE_OLD_ARCHITECTURE
is_executed_ = false;
Expand Down

0 comments on commit 27eb33c

Please sign in to comment.