|
|
|
@ -424,7 +424,7 @@ bool NavEKF2_core::setOriginLLH(const Location &loc)
@@ -424,7 +424,7 @@ bool NavEKF2_core::setOriginLLH(const Location &loc)
|
|
|
|
|
EKF_origin = loc; |
|
|
|
|
ekfGpsRefHgt = (double)0.01 * (double)EKF_origin.alt; |
|
|
|
|
// define Earth rotation vector in the NED navigation frame at the origin
|
|
|
|
|
calcEarthRateNED(earthRateNED, _ahrs->get_home().lat); |
|
|
|
|
calcEarthRateNED(earthRateNED, loc.lat); |
|
|
|
|
validOrigin = true; |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
@ -440,7 +440,7 @@ void NavEKF2_core::setOrigin()
@@ -440,7 +440,7 @@ void NavEKF2_core::setOrigin()
|
|
|
|
|
} |
|
|
|
|
ekfGpsRefHgt = (double)0.01 * (double)EKF_origin.alt; |
|
|
|
|
// define Earth rotation vector in the NED navigation frame at the origin
|
|
|
|
|
calcEarthRateNED(earthRateNED, _ahrs->get_home().lat); |
|
|
|
|
calcEarthRateNED(earthRateNED, EKF_origin.lat); |
|
|
|
|
validOrigin = true; |
|
|
|
|
gcs().send_text(MAV_SEVERITY_INFO, "EKF2 IMU%u Origin set to GPS",(unsigned)imu_index); |
|
|
|
|
} |
|
|
|
|