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

@@ -79,6 +79,12 @@ namespace BlackSimPlugin::XPlane
double pitchDeg = 0; //!< Pitch [deg]
double rollDeg = 0; //!< Roll [deg]
double trueHeadingDeg = 0; //!< True heading [deg]
double localXVelocityMs = 0; //!< Local x velocity [m/s]
double localYVelocityMs = 0; //!< Local y velocity [m/s]
double localZVelocityMs = 0; //!< Local z velocity [m/s]
double pitchRadPerSec = 0; //!< Pitch angular velocity [rad/s]
double rollRadPerSec = 0; //!< Roll angular velocity [rad/s]
double headingRadPerSec = 0; //!< Heading angular velocity [rad/s]
bool onGroundAll = false; //!< All wheels on ground?
int com1ActiveKhz = 122800; //!< COM1 active [kHz]
int com1StandbyKhz = 122800; //!< COM1 standby [kHz]