Carma-platform v4.11.0
CARMA Platform is built on robot operating system (ROS) and utilizes open source software (OSS) that enables Cooperative Driving Automation (CDA) features to allow Automated Driving Systems to interact and cooperate with infrastructure and other vehicles through communication.
stop_and_wait_plugin_launch Namespace Reference

Functions

def generate_launch_description ()
 

Function Documentation

◆ generate_launch_description()

def stop_and_wait_plugin_launch.generate_launch_description ( )

Definition at line 29 of file stop_and_wait_plugin_launch.py.

30
31 # Launch node(s) in a carma container to allow logging to be configured
32 container = ComposableNodeContainer(
33 package='carma_ros2_utils',
34 name='stop_and_wait_plugin_container',
35 namespace=GetCurrentNamespace(),
36 executable='carma_component_container_mt',
37 composable_node_descriptions=[
38
39 # Launch the core node(s)
40 ComposableNode(
41 package='stop_and_wait_plugin',
42 plugin='stop_and_wait_plugin::StopandWaitNode',
43 name='stop_and_wait_plugin_node',
44 extra_arguments=[
45 {'use_intra_process_comms': True},
46 ],
47 ),
48 ]
49 )
50
51 return LaunchDescription([
52 container
53 ])