Skip to content

Commit

Permalink
autoware-on-linux xx1 ver-20240108
Browse files Browse the repository at this point in the history
  • Loading branch information
sykwer committed Jan 8, 2024
1 parent c7bf8f3 commit 89b7bbc
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions autoware_launch/launch/pointcloud_container.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,32 @@ def add_launch_arg(name: str, default_value=None):
output="screen",
)

pointcloud_container2 = ComposableNodeContainer(
name="pointcloud_container2",
namespace="/",
package="rclcpp_component_container_callback_isolated",
executable="component_container_callback_isolated",
composable_node_descriptions=[],
output="screen",
)

planning_container = ComposableNodeContainer(
name="planning_container",
namespace="/",
package="rclcpp_component_container_callback_isolated",
executable="component_container_callback_isolated",
composable_node_descriptions=[],
output="screen",
)

return LaunchDescription(
[
add_launch_arg("use_multithread", "false"),
add_launch_arg("container_name", "pointcloud_container"),
set_container_executable,
set_container_mt_executable,
pointcloud_container,
pointcloud_container2,
planning_container,
]
)

0 comments on commit 89b7bbc

Please sign in to comment.