1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-20 10:54:14 +01:00

LP-500 Added UAVObject for HoTT bridge

This commit is contained in:
Corvus Corax 2017-03-23 08:53:45 +01:00 committed by Eric Price
parent 2977ec1382
commit faf894c530
3 changed files with 18 additions and 0 deletions

View File

@ -55,6 +55,7 @@ MODULES += Notify
OPTMODULES += AutoTune
OPTMODULES += ComUsbBridge
OPTMODULES += UAVOHottBridge
OPTMODULES += UAVOMSPBridge
OPTMODULES += UAVOMavlinkBridge

View File

@ -126,6 +126,7 @@ UAVOBJSRCFILENAMES += poilearnsettings
UAVOBJSRCFILENAMES += mpugyroaccelsettings
UAVOBJSRCFILENAMES += txpidsettings
UAVOBJSRCFILENAMES += txpidstatus
UAVOBJSRCFILENAMES += hottbridgestatus
UAVOBJSRCFILENAMES += takeofflocation
UAVOBJSRCFILENAMES += perfcounter
UAVOBJSRCFILENAMES += systemidentsettings

View File

@ -0,0 +1,16 @@
<xml>
<object name="HoTTBridgeStatus" singleinstance="true" settings="false" category="System" priority="true">
<description>HoTTBridge Status Information</description>
<field name="TxPackets" units="count" type="uint32" elements="1"/>
<field name="RxPackets" units="count" type="uint32" elements="1"/>
<field name="TxFail" units="count" type="uint32" elements="1"/>
<field name="RxFail" units="count" type="uint32" elements="1"/>
<access gcs="readwrite" flight="readwrite"/>
<telemetrygcs acked="false" updatemode="manual" period="0"/>
<telemetryflight acked="false" updatemode="periodic" period="5000"/>
<logging updatemode="manual" period="0"/>
</object>
</xml>