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
|
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE context [
<!ELEMENT context (device)*>
<!ELEMENT device (channel | attribute)*>
<!ELEMENT channel (attribute)*>
<!ELEMENT attribute EMPTY>
<!ATTLIST context name CDATA #REQUIRED>
<!ATTLIST device id CDATA #REQUIRED name CDATA #IMPLIED>
<!ATTLIST channel id CDATA #REQUIRED type CDATA #REQUIRED name CDATA #IMPLIED>
<!ATTLIST attribute name CDATA #REQUIRED>
]>
<context name="local">
<device id="iio:device0" name="ad5628-1" >
<channel id="voltage0" type="output" >
<attribute name="powerdown_mode" />
<attribute name="powerdown" />
<attribute name="raw" />
<attribute name="scale" />
<attribute name="powerdown_mode_available" />
</channel>
<channel id="voltage1" type="output" >
<attribute name="powerdown_mode" />
<attribute name="powerdown" />
<attribute name="raw" />
<attribute name="scale" />
<attribute name="powerdown_mode_available" />
</channel>
<channel id="voltage2" type="output" >
<attribute name="powerdown" />
<attribute name="powerdown_mode" />
<attribute name="raw" />
<attribute name="scale" />
<attribute name="powerdown_mode_available" />
</channel>
<channel id="voltage3" type="output" >
<attribute name="powerdown" />
<attribute name="powerdown_mode" />
<attribute name="raw" />
<attribute name="scale" />
<attribute name="powerdown_mode_available" />
</channel>
<channel id="voltage4" type="output" >
<attribute name="powerdown_mode" />
<attribute name="powerdown" />
<attribute name="raw" />
<attribute name="scale" />
<attribute name="powerdown_mode_available" />
</channel>
<channel id="voltage5" type="output" >
<attribute name="powerdown_mode" />
<attribute name="powerdown" />
<attribute name="raw" />
<attribute name="scale" />
<attribute name="powerdown_mode_available" />
</channel>
<channel id="voltage6" type="output" >
<attribute name="powerdown" />
<attribute name="powerdown_mode" />
<attribute name="raw" />
<attribute name="scale" />
<attribute name="powerdown_mode_available" />
</channel>
<channel id="voltage7" type="output" >
<attribute name="powerdown" />
<attribute name="powerdown_mode" />
<attribute name="raw" />
<attribute name="scale" />
<attribute name="powerdown_mode_available" />
</channel>
</device>
</context>
|