Skip to content

Commit

Permalink
include_concat_node_in_pointcloud_container to use_pointcloud_container
Browse files Browse the repository at this point in the history
Signed-off-by: kminoda <[email protected]>
  • Loading branch information
kminoda committed Jan 17, 2024
1 parent 628ca67 commit 40faf92
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def launch_setup(context, *args, **kwargs):
executable=LaunchConfiguration("container_executable"),
composable_node_descriptions=[],
condition=UnlessCondition(
LaunchConfiguration("include_concat_node_in_pointcloud_container")
LaunchConfiguration("use_pointcloud_container")
),
output="screen",
)
Expand Down
4 changes: 2 additions & 2 deletions sample_sensor_kit_launch/launch/sensing.launch.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<launch>
<arg name="launch_driver" default="true" description="do launch driver"/>
<arg name="vehicle_mirror_param_file" description="path to the file of vehicle mirror position yaml"/>
<arg name="include_concat_node_in_pointcloud_container" default="false" description="launch pointcloud container"/>
<arg name="use_pointcloud_container" default="false" description="launch pointcloud container"/>
<arg name="pointcloud_container_name" default="pointcloud_container"/>
<arg name="vehicle_id" default="$(env VEHICLE_ID default)"/>

Expand All @@ -10,7 +10,7 @@
<include file="$(find-pkg-share sample_sensor_kit_launch)/launch/lidar.launch.xml">
<arg name="launch_driver" value="$(var launch_driver)"/>
<arg name="vehicle_mirror_param_file" value="$(var vehicle_mirror_param_file)"/>
<arg name="include_concat_node_in_pointcloud_container" value="$(var include_concat_node_in_pointcloud_container)"/>
<arg name="use_pointcloud_container" value="$(var use_pointcloud_container)"/>
<arg name="pointcloud_container_name" value="$(var pointcloud_container_name)"/>
</include>

Expand Down

0 comments on commit 40faf92

Please sign in to comment.