From 77516329fc81499f1cf961eb8239e75090161f8b Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 11 Apr 2019 19:51:43 +1000 Subject: [PATCH] Plane: show message for skipping gyro cal --- ArduPlane/system.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ArduPlane/system.cpp b/ArduPlane/system.cpp index 3b8274556b..800bafbcb4 100644 --- a/ArduPlane/system.cpp +++ b/ArduPlane/system.cpp @@ -395,6 +395,8 @@ void Plane::startup_INS_ground(void) if (ins.gyro_calibration_timing() != AP_InertialSensor::GYRO_CAL_NEVER) { gcs().send_text(MAV_SEVERITY_ALERT, "Beginning INS calibration. Do not move plane"); hal.scheduler->delay(100); + } else { + gcs().send_text(MAV_SEVERITY_ALERT, "Skipping INS calibration"); } ahrs.init();