Rover: use ahrs.get_origin instead of ekf.getOriginLLH

This ensures we get the origin from the active EKF
This commit is contained in:
Randy Mackay 2016-03-03 15:57:16 +09:00
parent 0dffeec07f
commit 62435d3a11
1 changed files with 1 additions and 1 deletions

View File

@ -375,7 +375,7 @@ void Rover::Log_Write_Home_And_Origin()
#if AP_AHRS_NAVEKF_AVAILABLE
// log ekf origin if set
Location ekf_orig;
if (ahrs.get_NavEKF_const().getOriginLLH(ekf_orig)) {
if (ahrs.get_origin(ekf_orig)) {
DataFlash.Log_Write_Origin(LogOriginType::ekf_origin, ekf_orig);
}
#endif