-
Notifications
You must be signed in to change notification settings - Fork 1
/
deviceAPI.xml
40 lines (35 loc) · 1004 Bytes
/
deviceAPI.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
<!DOCTYPE QtuCDeviceAPIDef>
<deviceAPI>
<deviceInfo>
<name>testDevice</name>
<desc>Short description for testDevice</desc>
<platform>A short platform for testDevice</platform>
<project>projName for testDevice</project>
<positiveAck>false</positiveAck>
</deviceInfo>
<hardwareInterfaceList>
<hardwareInterface>
<name>testHw</name>
<info>Test hw interface 1 for testDevice.</info>
</hardwareInterface>
<hardwareInterface>
<name>hw2</name>
<info>Test hw interface 2 for testDevice.</info>
</hardwareInterface>
</hardwareInterfaceList>
<stateVariableList>
<stateVariable>
<hwInterface>testHw</hwInterface>
<name>counter</name>
<type>int</type>
<autoUpdate side="user">50</autoUpdate>
</stateVariable>
</stateVariableList>
<functionList>
<function>
<hwInterface>hw1</hwInterface>
<name>f1</name>
<args> arg1 arg2 "argument 3 with spaces..."</args>
</function>
</functionList>
</deviceAPI>