Skip to content

Commit be626b7

Browse files
authored
fix(motion_velocity_smoother): fix the arg name of the parameter (#4740)
Signed-off-by: Tomohito Ando <tomohito.ando@tier4.jp>
1 parent 2624ad0 commit be626b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

planning/motion_velocity_smoother/launch/motion_velocity_smoother.launch.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
<!-- Analytical, JerkFiltered, L2, or Linf -->
1414

1515
<arg name="param_path" default="$(find-pkg-share motion_velocity_smoother)/config/default_motion_velocity_smoother.param.yaml"/>
16-
<arg name="smoother_param_path" default="$(find-pkg-share motion_velocity_smoother)/config/$(var velocity_smoother_type).param.yaml"/>
16+
<arg name="velocity_smoother_param_path" default="$(find-pkg-share motion_velocity_smoother)/config/$(var velocity_smoother_type).param.yaml"/>
1717

1818
<node pkg="motion_velocity_smoother" exec="motion_velocity_smoother" name="motion_velocity_smoother" output="screen">
1919
<param from="$(var common_param_path)"/>
2020
<param from="$(var nearest_search_param_path)"/>
2121
<param from="$(var param_path)"/>
22-
<param from="$(var smoother_param_path)"/>
22+
<param from="$(var velocity_smoother_param_path)"/>
2323
<param name="publish_debug_trajs" value="$(var publish_debug_trajs)"/>
2424
<param name="algorithm_type" value="$(var velocity_smoother_type)"/>
2525
<remap from="~/input/trajectory" to="$(var input_trajectory)"/>

0 commit comments

Comments
 (0)