Skip to content

Commit 15828e0

Browse files
committed
chore(system): vehicle info
Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
1 parent 0b7dafe commit 15828e0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: system/default_ad_api/package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<depend>autoware_adapi_version_msgs</depend>
1818
<depend>autoware_planning_msgs</depend>
1919
<depend>autoware_system_msgs</depend>
20+
<depend>autoware_vehicle_info_utils</depend>
2021
<depend>autoware_vehicle_msgs</depend>
2122
<depend>component_interface_specs</depend>
2223
<depend>component_interface_utils</depend>
@@ -32,7 +33,6 @@
3233
<depend>tier4_api_msgs</depend>
3334
<depend>tier4_control_msgs</depend>
3435
<depend>tier4_system_msgs</depend>
35-
<depend>vehicle_info_util</depend>
3636

3737
<exec_depend>python3-flask</exec_depend>
3838

Diff for: system/default_ad_api/src/vehicle_info.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#include "vehicle_info.hpp"
1616

17-
#include <vehicle_info_util/vehicle_info_util.hpp>
17+
#include <autoware_vehicle_info_utils/vehicle_info_utils.hpp>
1818

1919
namespace
2020
{
@@ -41,7 +41,7 @@ VehicleInfoNode::VehicleInfoNode(const rclcpp::NodeOptions & options)
4141
res->dimensions = dimensions_;
4242
};
4343

44-
const auto vehicle = vehicle_info_util::VehicleInfoUtil(*this).getVehicleInfo();
44+
const auto vehicle = autoware::vehicle_info_utils::VehicleInfoUtils(*this).getVehicleInfo();
4545
dimensions_.wheel_radius = vehicle.wheel_radius_m;
4646
dimensions_.wheel_width = vehicle.wheel_width_m;
4747
dimensions_.wheel_base = vehicle.wheel_base_m;

0 commit comments

Comments
 (0)