-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDrive.xml
121 lines (98 loc) · 4.56 KB
/
Drive.xml
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?xml version="1.0" encoding="utf-8"?>
<!--
-******************************************************************************
- (C) Copyright 2020-2022 Real-Time Innovations, Inc. All rights reserved.
-
- The use of this software is governed by the terms specified in the
- RTI Labs License Agreement, available at https://www.rti.com/terms/RTILabs.
-
- By accessing, downloading, or otherwise using this software, you agree to
- be bound by those terms.
-*****************************************************************************
-->
<dds xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://community.rti.com/schema/7.3.0/rti_dds_profiles.xsd">
<!-- Data Types -->
<types>
<include file="res/types/data/sensing/Camera_t.xml" />
<include file="res/types/data/sensing/Lidar_t.xml" />
<include file="res/types/data/perception/Track_t.xml" />
<include file="res/types/data/perception/Lane_t.xml" />
<include file="res/types/data/planning/Alert_t.xml" />
<include file="res/types/data/actuation/Steering_t.xml" />
<include file="res/types/data/gateway/CAN_t.xml" />
</types>
<!-- Databus Library -->
<domain_library name="DriveBus">
<!-- main databus -->
<domain name="main">
<!-- Camera -->
<register_type name="dds::sensing::Camera"
type_ref="dds::sensing::Camera" />
<topic name="Stream/Camera"
register_type_ref="dds::sensing::Camera" />
<!-- Lidar -->
<register_type name="dds::sensing::Lidar"
type_ref="dds::sensing::Lidar" />
<topic name="Stream/Lidar"
register_type_ref="dds::sensing::Lidar" />
<!-- Track -->
<register_type name="dds::perception::Track"
type_ref="dds::perception::Track" />
<topic name="Status/Track"
register_type_ref="dds::perception::Track" />
<!-- TrackInfo -->
<register_type name="dds::perception::TrackInfo"
type_ref="dds::perception::TrackInfo" />
<topic name="Config/TrackInfo"
register_type_ref="dds::perception::TrackInfo" />
<!-- Lane -->
<register_type name="dds::perception::Lane"
type_ref="dds::perception::Lane" />
<topic name="Status/Lane"
register_type_ref="dds::perception::Lane" />
<!-- LaneInfo -->
<register_type name="dds::perception::LaneInfo"
type_ref="dds::perception::LaneInfo" />
<topic name="Config/LaneInfo"
register_type_ref="dds::perception::LaneInfo" />
<!-- Alert -->
<register_type name="dds::planning::Alert"
type_ref="dds::planning::Alert" />
<topic name="Status/Alert"
register_type_ref="dds::planning::Alert" />
<!-- SteeringDesired -->
<register_type name="dds::actuation::SteeringDesired"
type_ref="dds::actuation::SteeringDesired" />
<topic name="Status/SteeringDesired"
register_type_ref="dds::actuation::SteeringDesired" />
<!-- SteeringActual -->
<register_type name="dds::actuation::SteeringActual"
type_ref="dds::actuation::SteeringActual" />
<topic name="Status/SteeringActual"
register_type_ref="dds::actuation::SteeringActual" />
</domain>
<!-- DDS-CAN databus -->
<domain name="can">
<!-- CANSignalInfo -->
<register_type name="dds::can::CANSignalInfo"
type_ref="dds::can::CANSignalInfo" />
<topic name="Config/SignalInfo"
register_type_ref="dds::can::CANSignalInfo" />
<!-- CANSignalIn and CANSignalOut -->
<register_type name="dds::can::CANSignal"
type_ref="dds::can::CANSignal" />
<topic name="Status/SignalIn"
register_type_ref="dds::can::CANSignal" />
<topic name="Status/SignalOut"
register_type_ref="dds::can::CANSignal" />
<!-- CANFrameIn and CANFrameOut -->
<register_type name="dds::can::CANFrame"
type_ref="dds::can::CANFrame" />
<topic name="Stream/FrameIn"
register_type_ref="dds::can::CANFrame" />
<topic name="Stream/FrameOut"
register_type_ref="dds::can::CANFrame" />
</domain>
</domain_library>
</dds>