Issue #95 [XPlane] Get velocity data from xswiftbus in fast update timer timeout

This commit is contained in:
Mat Sutcliffe
2021-10-11 18:26:05 +01:00
parent 0faa7ed8fc
commit 3f57c66784
7 changed files with 233 additions and 0 deletions

View File

@@ -22,6 +22,14 @@ R"XML(<node>
<arg name="trueHeading" type="d" direction="out"/>
<arg name="qnh" type="d" direction="out"/>
</method>
<method name="getOwnAircraftVelocityData">
<arg name="x" type="d" direction="out"/>
<arg name="y" type="d" direction="out"/>
<arg name="z" type="d" direction="out"/>
<arg name="pitch" type="d" direction="out"/>
<arg name="roll" type="d" direction="out"/>
<arg name="heading" type="d" direction="out"/>
</method>
<method name="getOwnAircraftCom1Data">
<arg name="actv" type="i" direction="out"/>
<arg name="stby" type="i" direction="out"/>
@@ -137,6 +145,24 @@ R"XML(<node>
<method name="getTrueHeadingDeg">
<arg type="d" direction="out"/>
</method>
<method name="getLocalXVelocityMps">
<arg type="d" direction="out"/>
</method>
<method name="getLocalYVelocityMps">
<arg type="d" direction="out"/>
</method>
<method name="getLocalZVelocityMps">
<arg type="d" direction="out"/>
</method>
<method name="getPitchRadPerSec">
<arg type="d" direction="out"/>
</method>
<method name="getRollRadPerSec">
<arg type="d" direction="out"/>
</method>
<method name="getHeadingRadPerSec">
<arg type="d" direction="out"/>
</method>
<method name="getAnyWheelOnGround">
<arg type="b" direction="out"/>
</method>