mirror of https://github.com/ArduPilot/ardupilot
AP_NavEKF: make it clear that all sat counts are covered
This commit is contained in:
parent
a1f5be5b9e
commit
d6c56b8f7a
|
@ -3099,7 +3099,7 @@ void NavEKF::readGpsData()
|
|||
gpsNoiseScaler = 1.0f;
|
||||
} else if (_ahrs->get_gps().num_sats() == 5) {
|
||||
gpsNoiseScaler = 1.4f;
|
||||
} else if (_ahrs->get_gps().num_sats() <= 4) {
|
||||
} else { // <= 4 satellites
|
||||
gpsNoiseScaler = 2.0f;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue