Skip to content

Commit

Permalink
fix(vehicle_cmd_gate): fix topic name
Browse files Browse the repository at this point in the history
  • Loading branch information
1222-takeshi committed Jan 20, 2022
1 parent 920b874 commit 2045e2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion control/vehicle_cmd_gate/src/vehicle_cmd_gate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ VehicleCmdGate::StartRequest::StartRequest(rclcpp::Node * node, bool use_start_r
request_start_pub_ = node_->create_publisher<tier4_debug_msgs::msg::BoolStamped>(
"/api/autoware/get/start_accepted", rclcpp::QoS(1));
current_twist_sub_ = node_->create_subscription<nav_msgs::msg::Odometry>(
"/localization/twist", rclcpp::QoS(1),
"/localization/kinematic_state", rclcpp::QoS(1),
std::bind(&VehicleCmdGate::StartRequest::onCurrentTwist, this, _1));
}

Expand Down

0 comments on commit 2045e2c

Please sign in to comment.