mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-10 09:58:28 -04:00
AP_NavEKF3: always set EKF control limits, even with no cores
This commit is contained in:
parent
889190d46e
commit
281fad53c2
@ -940,6 +940,9 @@ void NavEKF3::getEkfControlLimits(float &ekfGndSpdLimit, float &ekfNavVelGainSca
|
||||
{
|
||||
if (core) {
|
||||
core[primary].getEkfControlLimits(ekfGndSpdLimit, ekfNavVelGainScaler);
|
||||
} else {
|
||||
ekfGndSpdLimit = 400.0f; //return 80% of max filter speed
|
||||
ekfNavVelGainScaler = 1.0f;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user