1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-03-15 07:29:15 +01:00

added some in uavobject definition comments

This commit is contained in:
Corvus Corax 2013-11-19 18:55:38 +01:00
parent d235a24e23
commit 3bfe74e73c
2 changed files with 10 additions and 2 deletions

View File

@ -1,6 +1,14 @@
<xml>
<object name="DebugLogControl" singleinstance="true" settings="false" category="System">
<description>Log Control Object</description>
<description>Log Control Object - Used to issue commands to the on board logging system</description>
<!-- Set Operation to Retrieve, in combination with Flight and Entry
fields, to
load a specific log entry into the DebugLogEntry UAVObject on
flight side - must be retrieved separately. If the log entry does
not exist, its Type field will be set to Empty, indicating a
nonexistant entry.
Set Operation to FormatFlash to format the flash partition used
for logs. Will only format if flightstatus is DISARMED!-->
<field name="Operation" units="" type="enum" elements="1" options="None, Retrieve, FormatFlash" />
<field name="Flight" units="" type="uint16" elements="1" />
<field name="Entry" units="" type="uint16" elements="1" />

View File

@ -1,6 +1,6 @@
<xml>
<object name="DebugLogStatus" singleinstance="true" settings="false" category="System">
<description>Log Control Object</description>
<description>Log Status Object, contains log partition status information</description>
<field name="Flight" units="" type="uint16" elements="1" />
<field name="Entry" units="" type="uint16" elements="1" />
<field name="UsedSlots" units="" type="uint16" elements="1" />