mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-30 20:48:33 -04:00
AP_NavEKF: Initialise timeout status to true
This status will be cleared when data arrives and is fused successfully
This commit is contained in:
parent
363c1e393d
commit
a535b73a6d
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user