Skip to content

Commit

Permalink
fix: add missing topic
Browse files Browse the repository at this point in the history
Signed-off-by: satoshi-ota <[email protected]>
  • Loading branch information
satoshi-ota committed Dec 25, 2024
1 parent 5d55a4b commit 1b35a9c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions system/autoware_default_adapi/src/planning.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const std::map<std::uint16_t, std::uint16_t> direction_map = {
{PlanningFactor::TURN_LEFT, SteeringFactor::LEFT}};

const std::map<std::string, std::string> conversion_map = {
{"behavior_path_planner", PlanningBehavior::INTERSECTION},
{"static_obstacle_avoidance", PlanningBehavior::AVOIDANCE},
{"crosswalk", PlanningBehavior::CROSSWALK},
{"goal_planner", PlanningBehavior::GOAL_PLANNER},
Expand Down Expand Up @@ -204,6 +205,7 @@ PlanningNode::PlanningNode(const rclcpp::NodeOptions & options) : Node("planning
stop_checker_ = std::make_unique<VehicleStopChecker>(this, stop_duration_ + 1.0);

std::vector<std::string> factor_topics = {
"/planning/planning_factors/behavior_path_planner",
"/planning/planning_factors/blind_spot",
"/planning/planning_factors/crosswalk",
"/planning/planning_factors/detection_area",
Expand Down

0 comments on commit 1b35a9c

Please sign in to comment.