Skip to content

Commit

Permalink
remove offset
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Sanchez <[email protected]>
  • Loading branch information
danielsanchezaran committed Apr 16, 2024
1 parent ef3fcbb commit c1c1474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion control/autonomous_emergency_braking/src/node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ bool AEB::checkCollision(MarkerArray & debug_markers)
}

// step2. create velocity data check if the vehicle stops or not
const double current_v = current_velocity_ptr_->longitudinal_velocity + 2.25;
const double current_v = current_velocity_ptr_->longitudinal_velocity;
if (current_v < 0.1) {
return false;
}
Expand Down

0 comments on commit c1c1474

Please sign in to comment.