AP_NavEKF: Initialise timeout status to true

This status will be cleared when data arrives and is fused successfully
This commit is contained in:
priseborough 2014-12-21 20:42:41 +11:00 committed by Randy Mackay
parent 363c1e393d
commit a535b73a6d

View File

@ -4355,11 +4355,11 @@ void NavEKF::ZeroVariables()
rngMeaTime_ms = imuSampleTime_ms;
gpsNoiseScaler = 1.0f;
velTimeout = false;
posTimeout = false;
hgtTimeout = false;
magTimeout = false;
tasTimeout = false;
velTimeout = true;
posTimeout = true;
hgtTimeout = true;
magTimeout = true;
tasTimeout = true;
badMag = false;
badIMUdata = false;
firstArmComplete = false;