Removed gravity and on ground check hardcoded testing values

This commit is contained in:
Lorenz Meier
2014-02-23 15:59:56 -08:00
parent 57df53d27c
commit b36bf7b17e
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
#pragma once
#define GRAVITY_MSS 9.76f//9.80665f
#define GRAVITY_MSS 9.80665f
#define deg2rad 0.017453292f
#define rad2deg 57.295780f
#define pi 3.141592657f
@@ -735,7 +735,6 @@ FixedwingEstimator::task_main()
StoreStates(IMUmsec);
// Check if on ground - status is used by covariance prediction
OnGroundCheck();
onGround = false;
// sum delta angles and time used by covariance prediction
summedDelAng = summedDelAng + correctedDelAng;
summedDelVel = summedDelVel + dVelIMU;