1<?xml version="1.0" encoding="utf-8"?> 2<!DOCTYPE context [ 3 <!ELEMENT context (device)*> 4 <!ELEMENT device (channel | attribute)*> 5 <!ELEMENT channel (attribute)*> 6 <!ELEMENT attribute EMPTY> 7 <!ATTLIST context name CDATA #REQUIRED> 8 <!ATTLIST device id CDATA #REQUIRED name CDATA #IMPLIED> 9 <!ATTLIST channel id CDATA #REQUIRED type CDATA #REQUIRED name CDATA #IMPLIED> 10 <!ATTLIST attribute name CDATA #REQUIRED> 11]> 12<context name="local"> 13 <device id="iio:device0" name="adis16488" > 14 <channel id="accel_x" type="input" > 15 <attribute name="calibbias" /> 16 <attribute name="calibscale" /> 17 <attribute name="filter_low_pass_3db_frequency" /> 18 <attribute name="raw" /> 19 <attribute name="scale" /> 20 </channel> 21 <channel id="accel_y" type="input" > 22 <attribute name="calibbias" /> 23 <attribute name="calibscale" /> 24 <attribute name="filter_low_pass_3db_frequency" /> 25 <attribute name="raw" /> 26 <attribute name="scale" /> 27 </channel> 28 <channel id="accel_z" type="input" > 29 <attribute name="calibbias" /> 30 <attribute name="calibscale" /> 31 <attribute name="filter_low_pass_3db_frequency" /> 32 <attribute name="raw" /> 33 <attribute name="scale" /> 34 </channel> 35 <channel id="anglvel_x" type="input" > 36 <attribute name="calibbias" /> 37 <attribute name="calibscale" /> 38 <attribute name="filter_low_pass_3db_frequency" /> 39 <attribute name="raw" /> 40 <attribute name="scale" /> 41 </channel> 42 <channel id="anglvel_y" type="input" > 43 <attribute name="calibbias" /> 44 <attribute name="calibscale" /> 45 <attribute name="filter_low_pass_3db_frequency" /> 46 <attribute name="raw" /> 47 <attribute name="scale" /> 48 </channel> 49 <channel id="anglvel_z" type="input" > 50 <attribute name="calibbias" /> 51 <attribute name="calibscale" /> 52 <attribute name="filter_low_pass_3db_frequency" /> 53 <attribute name="raw" /> 54 <attribute name="scale" /> 55 </channel> 56 <channel id="magn_x" type="input" > 57 <attribute name="calibbias" /> 58 <attribute name="filter_low_pass_3db_frequency" /> 59 <attribute name="raw" /> 60 <attribute name="scale" /> 61 </channel> 62 <channel id="magn_y" type="input" > 63 <attribute name="calibbias" /> 64 <attribute name="filter_low_pass_3db_frequency" /> 65 <attribute name="raw" /> 66 <attribute name="scale" /> 67 </channel> 68 <channel id="magn_z" type="input" > 69 <attribute name="calibbias" /> 70 <attribute name="filter_low_pass_3db_frequency" /> 71 <attribute name="raw" /> 72 <attribute name="scale" /> 73 </channel> 74 <channel id="pressure0" type="input" > 75 <attribute name="calibbias" /> 76 <attribute name="raw" /> 77 <attribute name="scale" /> 78 </channel> 79 <channel id="temp0" type="input" > 80 <attribute name="offset" /> 81 <attribute name="raw" /> 82 <attribute name="scale" /> 83 </channel> 84 <attribute name="sampling_frequency" /> 85 </device> 86</context> 87