-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestXCM.xml
More file actions
36 lines (36 loc) · 1.37 KB
/
TestXCM.xml
File metadata and controls
36 lines (36 loc) · 1.37 KB
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
<?xml version="1.0" encoding="utf-8" ?>
<spacesystem xmlns="http://www.w3schools.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3.org/2001/XMLSchema xcm.xsd">
<symbols>
</symbols>
<messages>
<message name="Status" identifier="$RFD50" identfiierType="string">
<!--This paket is a standard status paket.-->
<symbol name="test">
<!--Test payload to test the decoder and encoder-->
<entry name="Testdata" type="uint" bitlength="16" value="32767000">
<!--Some Testdata with a fixed value-->
</entry>
<entry name="TestBool" type="bool" value="true"/>
</symbol>
</message>
<message name="BarometricData" identifier="$RFD50" identfiierType="string">
<symbol>
<entry name="timestamp" type="uint" bitlength="32"/>
<entry name="preassure" type="double"/>
<entry name="speed" type="double" visibility="virtual">
<math>preassure_diff/timestamp_diff</math>
</entry>
<entry name="teststring" type="string" maxlength="50"/>
</symbol>
</message>
</messages>
<commands>
<command name="Testcommand" identifier="$RFCC" identfiierType="string">
<symbol>
<entry name="command" type="string" length="10" value="RST"/>
</symbol>
</command>
</commands>
</spacesystem>