1
0
Fork 0

Bug 941, lower minimum speed for GPS sequencing.

10kts is fine, apparently some people 'fly' very slowly.
This commit is contained in:
James Turner 2012-12-29 13:46:29 +00:00
parent d311045018
commit 34e8181cc9

View file

@ -767,7 +767,7 @@ void GPS::updateTurn()
bool printProgress = false; bool printProgress = false;
if (_computeTurnData) { if (_computeTurnData) {
if (_last_speed_kts < 60) { if (_last_speed_kts < 10) {
// need valid leg course and sensible ground speed to compute the turn // need valid leg course and sensible ground speed to compute the turn
return; return;
} }