mirror of https://github.com/ArduPilot/ardupilot
Rover: use ahrs.get_origin instead of ekf.getOriginLLH
This ensures we get the origin from the active EKF
This commit is contained in:
parent
0dffeec07f
commit
62435d3a11
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue