diff --git a/libraries/AP_NavEKF2/AP_NavEKF2_Outputs.cpp b/libraries/AP_NavEKF2/AP_NavEKF2_Outputs.cpp index 32dabcc2f7..bd5ce7ce86 100644 --- a/libraries/AP_NavEKF2/AP_NavEKF2_Outputs.cpp +++ b/libraries/AP_NavEKF2/AP_NavEKF2_Outputs.cpp @@ -349,6 +349,8 @@ bool NavEKF2_core::getLLH(struct Location &loc) const } else { // if no GPS fix, provide last known position before entering the mode // correct for IMU offset (EKF calculations are at the IMU position) + loc.lat = EKF_origin.lat; + loc.lng = EKF_origin.lng; loc.offset((lastKnownPositionNE.x + posOffsetNED.x), (lastKnownPositionNE.y + posOffsetNED.y)); return false; }