LP-490 changed default gyro process noise to increase filter stability (converges...
[librepilot.git] / shared / uavobjectdefinition / flighttelemetrystats.xml
blob09ae7515c9bef86d4d7e1c29bf62c18c68dd895c
1 <xml>
2     <object name="FlightTelemetryStats" singleinstance="true" settings="false" category="System" priority="true">
3         <description>Maintains the telemetry statistics from the OpenPilot flight computer.</description>
4         
5         <field name="Status" units="" type="enum" elements="1" options="Disconnected,HandshakeReq,HandshakeAck,Connected"/>
6         
7         <field name="TxDataRate" units="bytes/sec" type="float" elements="1"/>
8         <field name="TxBytes" units="bytes" type="uint32" elements="1"/>
9         <field name="TxFailures" units="count" type="uint32" elements="1"/>
10         <field name="TxRetries" units="count" type="uint32" elements="1"/>
11         
12         <field name="RxDataRate" units="bytes/sec" type="float" elements="1"/>
13         <field name="RxBytes" units="bytes" type="uint32" elements="1"/>
14         <field name="RxFailures" units="count" type="uint32" elements="1"/>
15         <field name="RxSyncErrors" units="count" type="uint32" elements="1"/>
16         <field name="RxCrcErrors" units="count" type="uint32" elements="1"/>
17         
18         <access gcs="readwrite" flight="readwrite"/>
19         <telemetrygcs acked="false" updatemode="manual" period="0"/>
20         <telemetryflight acked="false" updatemode="periodic" period="5000"/>
21         <logging updatemode="manual" period="0"/>
22     </object>
23 </xml>