diff --git a/libraries/GCS_MAVLink/GCS_Common.cpp b/libraries/GCS_MAVLink/GCS_Common.cpp index 439b831081..e28e13421b 100644 --- a/libraries/GCS_MAVLink/GCS_Common.cpp +++ b/libraries/GCS_MAVLink/GCS_Common.cpp @@ -1474,7 +1474,8 @@ void GCS_MAVLINK::send_home(const Location &home) const home.alt * 10, 0.0f, 0.0f, 0.0f, q, - 0.0f, 0.0f, 0.0f); + 0.0f, 0.0f, 0.0f, + AP_HAL::micros64()); } } @@ -1485,7 +1486,8 @@ void GCS_MAVLINK::send_ekf_origin(const Location &ekf_origin) const chan, ekf_origin.lat, ekf_origin.lng, - ekf_origin.alt * 10); + ekf_origin.alt * 10, + AP_HAL::micros64()); } }