Skip to content

Commit

Permalink
fix(avoidance): add missing param declaration (autowarefoundation#5948)
Browse files Browse the repository at this point in the history
Signed-off-by: satoshi-ota <[email protected]>
  • Loading branch information
satoshi-ota authored and karishma1911 committed May 28, 2024
1 parent f7908c8 commit b80e7fa
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,8 @@ AvoidanceParameters getParameter(rclcpp::Node * node)
getOrDeclareParameter<double>(*node, ns + "max_velocity");
p.ego_predicted_path_params.acceleration =
getOrDeclareParameter<double>(*node, "avoidance.constraints.longitudinal.max_acceleration");
p.ego_predicted_path_params.time_horizon_for_front_object =
getOrDeclareParameter<double>(*node, ns + "time_horizon_for_front_object");
p.ego_predicted_path_params.time_horizon_for_rear_object =
getOrDeclareParameter<double>(*node, ns + "time_horizon_for_rear_object");
p.ego_predicted_path_params.time_resolution =
Expand Down

0 comments on commit b80e7fa

Please sign in to comment.