Skip to content

Commit d0fcee8

Browse files
committed
feat(behavior_velocity_traffic_light_module): change threshold velocity of pass judge for preventing sudden stop
Signed-off-by: Y.Hisaki <yhisaki31@gmail.com>
1 parent e5171d7 commit d0fcee8

File tree

1 file changed

+1
-1
lines changed
  • planning/behavior_velocity_planner/autoware_behavior_velocity_traffic_light_module/src

1 file changed

+1
-1
lines changed

planning/behavior_velocity_planner/autoware_behavior_velocity_traffic_light_module/src/scene.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ bool TrafficLightModule::isPassthrough(const double & signed_arc_length) const
233233
delay_response_time);
234234

235235
const bool distance_stoppable = pass_judge_line_distance < signed_arc_length;
236-
const bool slow_velocity = planner_data_->current_velocity->twist.linear.x < 2.0;
236+
const bool slow_velocity = planner_data_->current_velocity->twist.linear.x < 1.0;
237237
const bool stoppable = distance_stoppable || slow_velocity;
238238
const bool reachable = signed_arc_length < reachable_distance;
239239

0 commit comments

Comments
 (0)