Skip to content

Commit

Permalink
fix(autoware_default_adapi): change subscribing steering factor topic…
Browse files Browse the repository at this point in the history
… name for obstacle avoidance and lane changes (#9273)

feat(planning): add new steering factor topics for obstacle avoidance and lane changes

Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
  • Loading branch information
kyoichi-sugahara authored Nov 11, 2024
1 parent 4f29939 commit c8d4f11
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions system/autoware_default_adapi/src/planning.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,13 @@ PlanningNode::PlanningNode(const rclcpp::NodeOptions & options) : Node("planning
"/planning/velocity_factors/motion_velocity_planner"};

std::vector<std::string> steering_factor_topics = {
"/planning/steering_factor/avoidance", "/planning/steering_factor/intersection",
"/planning/steering_factor/lane_change", "/planning/steering_factor/start_planner",
"/planning/steering_factor/static_obstacle_avoidance",
"/planning/steering_factor/dynamic_obstacle_avoidance",
"/planning/steering_factor/avoidance_by_lane_change",
"/planning/steering_factor/intersection",
"/planning/steering_factor/lane_change_left",
"/planning/steering_factor/lane_change_right",
"/planning/steering_factor/start_planner",
"/planning/steering_factor/goal_planner"};

sub_velocity_factors_ =
Expand Down

0 comments on commit c8d4f11

Please sign in to comment.