Skip to content

Commit

Permalink
Fix wrong topic name
Browse files Browse the repository at this point in the history
  • Loading branch information
AnonymDavid committed Jan 28, 2025
1 parent 36746f7 commit 6bf1d29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crp_APL/plan_motion_planning/src/motionHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ crp::apl::MotionHandler::MotionHandler() : Node("motion_handler")
m_sub_strategy_ = this->create_subscription<tier4_planning_msgs::msg::Scenario>(
"plan/strategy", 10, std::bind(&MotionHandler::scenarioCallback, this, std::placeholders::_1));
m_sub_plan_latLaneFollow_ = this->create_subscription<autoware_planning_msgs::msg::Trajectory>(
"plan/plan_lat_lane_follow_ldm/trajectory", 10, std::bind(&MotionHandler::planLatLaneFollowCallback, this, std::placeholders::_1));
"plan/lat_lane_follow_ldm/trajectory", 10, std::bind(&MotionHandler::planLatLaneFollowCallback, this, std::placeholders::_1));
m_sub_plan_lonEmergency_ = this->create_subscription<autoware_planning_msgs::msg::Trajectory>(
"plan/lon_emergency/trajectory", 10, std::bind(&MotionHandler::planLonEmergencyCallback, this, std::placeholders::_1));
m_sub_plan_lonIntelligentSpeedAdjust_ = this->create_subscription<autoware_planning_msgs::msg::Trajectory>(
Expand Down

0 comments on commit 6bf1d29

Please sign in to comment.