Carma-platform v4.2.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.
carma_wm_broadcaster Namespace Reference

Functions

def generate_launch_description ()
 

Function Documentation

◆ generate_launch_description()

def carma_wm_broadcaster.generate_launch_description ( )

Definition at line 31 of file carma_wm_broadcaster.launch.py.

32
33 # Declare the log_level launch argument
34 log_level = LaunchConfiguration('log_level')
35 declare_log_level_arg = DeclareLaunchArgument(
36 name ='log_level', default_value='WARN')
37
38 carma_wm_ctrl_param_file = os.path.join(
39 get_package_share_directory('carma_wm_ctrl'), 'config/parameters.yaml')
40
41 # Launch node(s) in a carma container to allow logging to be configured
42 container = ComposableNodeContainer(
43 package='carma_ros2_utils',
44 name='carma_wm_ctrl_container',
45 namespace=GetCurrentNamespace(),
46 executable='carma_component_container_mt',
47 composable_node_descriptions=[
48
49 # Launch the core node(s)
50 ComposableNode(
51 package='carma_wm_ctrl',
52 plugin='carma_wm_ctrl::WMBroadcasterNode',
53 name='carma_wm_broadcaster',
54 extra_arguments=[
55 {'use_intra_process_comms': True},
56 {'--log-level' : log_level }
57 ],
58 parameters=[ carma_wm_ctrl_param_file ]
59 ),
60 ]
61 )
62
63 return LaunchDescription([
64 declare_log_level_arg,
65 container
66 ])