mirror of https://github.com/ArduPilot/ardupilot
autotest: shorten statustext message to avoid chunking
This commit is contained in:
parent
3b1f5f0b15
commit
1fb43d63e2
|
@ -450,7 +450,7 @@ bool AC_AutoTune::currently_level()
|
|||
// display warning if vehicle fails to level
|
||||
if ((now_ms - level_start_time_ms > AUTOTUNE_LEVEL_WARNING_INTERVAL_MS) &&
|
||||
(now_ms - level_fail_warning_time_ms > AUTOTUNE_LEVEL_WARNING_INTERVAL_MS)) {
|
||||
gcs().send_text(MAV_SEVERITY_CRITICAL, "AutoTune: failing to level, manual tune may be required");
|
||||
gcs().send_text(MAV_SEVERITY_CRITICAL, "AutoTune: failing to level, please tune manually");
|
||||
level_fail_warning_time_ms = now_ms;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue