1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-26 01:35:35 +03:00

fixed typo in comment

This commit is contained in:
Roman Lut 2022-12-28 03:07:26 +02:00
parent a439e2925c
commit 3ade7e218d

View file

@ -2385,7 +2385,7 @@ bool validateRTHSanityChecker(void)
//disable sanity checks in GPS estimation mode
//when estimated GPS fix is replaced with real fix, coordinates may jump
posControl.rthSanityChecker.minimalDistanceToHome = 1e10f;
//schedule check 5 seconds after apperange of real GPS fix, when position estimation coords stabilise after jump
//schedule check in 5 seconds after getting real GPS fix, when position estimation coords stabilise after jump
posControl.rthSanityChecker.lastCheckTime = currentTimeMs + 5000;
return true;
}