Bug 941, lower minimum speed for GPS sequencing.
10kts is fine, apparently some people 'fly' very slowly.
This commit is contained in:
parent
d311045018
commit
34e8181cc9
1 changed files with 1 additions and 1 deletions
|
@ -767,7 +767,7 @@ void GPS::updateTurn()
|
|||
bool printProgress = false;
|
||||
|
||||
if (_computeTurnData) {
|
||||
if (_last_speed_kts < 60) {
|
||||
if (_last_speed_kts < 10) {
|
||||
// need valid leg course and sensible ground speed to compute the turn
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue