mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-29 07:24:13 +01:00
ef15064b26
Descriptions can be added to fields either as attributes or child nodes. Descriptions are not mandatory at this stage. The description shows up when hovering over objects and fields in the UAVObject browser. Added example descriptions to a few fields in the UAVO descriptor files.
14 lines
935 B
XML
14 lines
935 B
XML
<xml>
|
|
<object name="DebugLogStatus" singleinstance="true" settings="false" category="System">
|
|
<description>Log Status Object, contains log partition status information</description>
|
|
<field name="Flight" units="" type="uint16" elements="1" description="The current flight number (logging session)"/>
|
|
<field name="Entry" units="" type="uint16" elements="1" description="The current log entry id"/>
|
|
<field name="UsedSlots" units="" type="uint16" elements="1" description="Holds the total log entries saved"/>
|
|
<field name="FreeSlots" units="" type="uint16" elements="1" description="The number of free log slots available"/>
|
|
<access gcs="readwrite" flight="readwrite"/>
|
|
<telemetrygcs acked="false" updatemode="manual" period="0"/>
|
|
<telemetryflight acked="false" updatemode="periodic" period="1000"/>
|
|
<logging updatemode="manual" period="0"/>
|
|
</object>
|
|
</xml>
|