Skip to content

Commit

Permalink
fix: add s to VehicleInfoUtil
Browse files Browse the repository at this point in the history
Signed-off-by: tomoya.kimura <[email protected]>
  • Loading branch information
tkimura4 committed Jun 11, 2024
1 parent fea89a0 commit b2d4c7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion control/vehicle_cmd_analyzer/src/vehicle_cmd_analyzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ VehicleCmdAnalyzer::VehicleCmdAnalyzer(const rclcpp::NodeOptions & options)
{
control_rate_ = declare_parameter("control_rate", 30.0);

const auto vehicle_info = autoware::vehicle_info_utils::VehicleInfoUtil(*this).getVehicleInfo();
const auto vehicle_info = autoware::vehicle_info_utils::VehicleInfoUtils(*this).getVehicleInfo();
wheelbase_ = vehicle_info.wheel_base_m;

sub_vehicle_cmd_ = this->create_subscription<autoware_control_msgs::msg::Control>(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ParameterEstimatorNode::ParameterEstimatorNode(const rclcpp::NodeOptions & node_
durable_qos.transient_local(); // option for latching

// get parameter
const auto vehicle_info = autoware::vehicle_info_utils::VehicleInfoUtil(*this).getVehicleInfo();
const auto vehicle_info = autoware::vehicle_info_utils::VehicleInfoUtils(*this).getVehicleInfo();
wheel_base_ = vehicle_info.wheel_base_m;
use_auto_mode_ = this->declare_parameter<bool>("use_auto_mode", true);
update_hz_ = this->declare_parameter<double>("update_hz", 10.0);
Expand Down

0 comments on commit b2d4c7d

Please sign in to comment.