Skip to content

Commit 38bd911

Browse files
authored
feat(velocity_smoother): use autoware internal Stamped messages (#9749)
* feat(velocity_smoother): use autoware internal Stamped messages Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> * fix Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> --------- Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
1 parent 50f7cb0 commit 38bd911

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

planning/autoware_velocity_smoother/include/autoware/velocity_smoother/node.hpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@
3939
#include <autoware/universe_utils/ros/published_time_publisher.hpp>
4040

4141
#include "autoware_adapi_v1_msgs/msg/operation_mode_state.hpp"
42+
#include "autoware_internal_debug_msgs/msg/float32_stamped.hpp"
43+
#include "autoware_internal_debug_msgs/msg/float64_stamped.hpp"
4244
#include "autoware_planning_msgs/msg/trajectory.hpp"
4345
#include "autoware_planning_msgs/msg/trajectory_point.hpp"
4446
#include "geometry_msgs/msg/accel_with_covariance_stamped.hpp"
4547
#include "nav_msgs/msg/odometry.hpp"
46-
#include "tier4_debug_msgs/msg/float32_stamped.hpp" // temporary
47-
#include "tier4_debug_msgs/msg/float64_stamped.hpp" // temporary
4848
#include "tier4_planning_msgs/msg/stop_speed_exceeded.hpp" // temporary
4949
#include "tier4_planning_msgs/msg/velocity_limit.hpp" // temporary
5050
#include "visualization_msgs/msg/marker_array.hpp"
@@ -62,12 +62,12 @@ using autoware_planning_msgs::msg::Trajectory;
6262
using autoware_planning_msgs::msg::TrajectoryPoint;
6363
using TrajectoryPoints = std::vector<TrajectoryPoint>;
6464
using autoware_adapi_v1_msgs::msg::OperationModeState;
65+
using autoware_internal_debug_msgs::msg::Float32Stamped;
66+
using autoware_internal_debug_msgs::msg::Float64Stamped;
6567
using geometry_msgs::msg::AccelWithCovarianceStamped;
6668
using geometry_msgs::msg::Pose;
6769
using geometry_msgs::msg::PoseStamped;
6870
using nav_msgs::msg::Odometry;
69-
using tier4_debug_msgs::msg::Float32Stamped; // temporary
70-
using tier4_debug_msgs::msg::Float64Stamped; // temporary
7171
using tier4_planning_msgs::msg::StopSpeedExceeded; // temporary
7272
using tier4_planning_msgs::msg::VelocityLimit; // temporary
7373
using visualization_msgs::msg::MarkerArray;

planning/autoware_velocity_smoother/package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
<buildtool_depend>autoware_cmake</buildtool_depend>
2222
<buildtool_depend>eigen3_cmake_module</buildtool_depend>
2323

24+
<depend>autoware_internal_debug_msgs</depend>
2425
<depend>autoware_interpolation</depend>
2526
<depend>autoware_motion_utils</depend>
2627
<depend>autoware_osqp_interface</depend>
@@ -34,7 +35,6 @@
3435
<depend>rclcpp</depend>
3536
<depend>tf2</depend>
3637
<depend>tf2_ros</depend>
37-
<depend>tier4_debug_msgs</depend>
3838
<depend>tier4_planning_msgs</depend>
3939

4040
<test_depend>ament_cmake_ros</test_depend>

0 commit comments

Comments
 (0)