File tree 2 files changed +4
-3
lines changed
planning/motion_velocity_planner/autoware_motion_velocity_planner_node/src
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -83,8 +83,8 @@ MotionVelocityPlannerNode::MotionVelocityPlannerNode(const rclcpp::NodeOptions &
83
83
velocity_factor_publisher_ =
84
84
this ->create_publisher <autoware_adapi_v1_msgs::msg::VelocityFactorArray>(
85
85
" ~/output/velocity_factors" , 1 );
86
- processing_time_publisher_ = this -> create_publisher <tier4_debug_msgs::msg::Float64Stamped>(
87
- " ~/debug/total_time /processing_time_ms" , 1 );
86
+ processing_time_publisher_ =
87
+ this -> create_publisher <tier4_debug_msgs::msg::Float64Stamped>( " ~/debug/processing_time_ms" , 1 );
88
88
89
89
// Parameters
90
90
smooth_velocity_before_planning_ = declare_parameter<bool >(" smooth_velocity_before_planning" );
Original file line number Diff line number Diff line change @@ -97,7 +97,8 @@ class MotionVelocityPlannerNode : public rclcpp::Node
97
97
rclcpp::Publisher<visualization_msgs::msg::MarkerArray>::SharedPtr debug_viz_pub_;
98
98
rclcpp::Publisher<autoware_adapi_v1_msgs::msg::VelocityFactorArray>::SharedPtr
99
99
velocity_factor_publisher_;
100
- autoware::universe_utils::ProcessingTimePublisher processing_diag_publisher_{this };
100
+ autoware::universe_utils::ProcessingTimePublisher processing_diag_publisher_{
101
+ this , " ~/debug/processing_time_ms_diag" };
101
102
rclcpp::Publisher<tier4_debug_msgs::msg::Float64Stamped>::SharedPtr processing_time_publisher_;
102
103
autoware::universe_utils::PublishedTimePublisher published_time_publisher_{this };
103
104
You can’t perform that action at this time.
0 commit comments