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

forgot uncrustification

This commit is contained in:
Corvus Corax 2013-12-27 18:37:14 +01:00
parent 1cccd152bd
commit d60eda1a83

View File

@ -319,9 +319,9 @@ void XplaneSimulator::processUpdate(const QByteArray & dataBuf)
out.velDown = -velZ;
// Update gyroscope sensor data - convert from rad/s to deg/s
out.rollRate = rollRate_rad * (180.0/M_PI);
out.pitchRate = pitchRate_rad * (180.0/M_PI);
out.yawRate = yawRate_rad * (180.0/M_PI);
out.rollRate = rollRate_rad * (180.0 / M_PI);
out.pitchRate = pitchRate_rad * (180.0 / M_PI);
out.yawRate = yawRate_rad * (180.0 / M_PI);
// Update accelerometer sensor data
out.accX = accX;