-
Notifications
You must be signed in to change notification settings - Fork 7
/
default_config.yaml.humble
executable file
·86 lines (77 loc) · 1.93 KB
/
default_config.yaml.humble
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
args: #path is relative from home
ue_path: UnrealEngine
ue_proj_path: turtlebot3-UE
ue_plugin_name: rclUE
ue_plugin_folder_name: rclUE
ue_target_3rd_name: ros # sub dir name under ThirdParty
# additional repos file path. path is relative from home
repos: UE_tools/ros2_additional_pkgs.repos
## build and code gen target msgs
## pkgs and prefix for class
target_pkgs:
action_msgs: ''
actionlib_msgs: ''
builtin_interfaces: ''
unique_identifier_msgs: ''
diagnostic_msgs: ''
rosgraph_msgs: ''
geometry_msgs: ''
nav_msgs: ''
sensor_msgs: ''
shape_msgs: ''
std_msgs: 'Std'
std_srvs: 'StdSrv'
stereo_msgs: ''
trajectory_msgs: ''
visualization_msgs: ''
tf2_msgs: ''
pcl_msgs: ''
#ackermann_msgs: ''
example_interfaces: ''
nav_msgs: ''
ue_msgs: ''
## if dependency is "targe", it used same value as target
## elif dependency is "default", it uses default value defined in script
dependency: "target"
# dependency: "default"
# dependency:
# action_msgs: ''
## additional dependency
## this dict is appended on dependency.
## Used to add dependency without overwriting original dependency.
# dependency_append: ''
# your_msg: ''
name_mapping:
Covariance: 'Cov'
Accel: 'Acc'
Vector: 'Vec'
Quaternion: 'Quat'
Trajectory: 'Traj'
Transform: 'TF'
Compressed: 'Comp'
Error: 'Err'
Diagnostics: 'Diag'
MultiArray: 'MA'
Dimension: 'Dim'
With: ''
Destination: 'Dest'
Reservation: 'Reserv'
Exception: 'Except'
Config: 'Conf'
InteractiveMarker: 'IM'
Control: 'Ctrl'
Request: 'Req'
Response: 'Res'
Message: 'Msg'
String: 'Str'
Image: 'Img'
Odometry: 'Odom'
Hardware: 'HW'
## additional name_mapping
## this dict is appended on name_mapping.
## Used to add name_mapping without overwriting original dependency.
# name_mapping_append:
# your_mapping_key: 'your_mapping_value'
# msgs which is not copied to project.
# black_list_msgs:
# - 'ROS2WStr' # can't handle wstring in UE.