AP_AHRS: pre-arm msg loses extra AHRS prefix

This commit is contained in:
Randy Mackay 2022-10-20 19:48:42 +09:00 committed by Peter Barker
parent 1b7ced4e2e
commit f2ed41f5cf

View File

@ -2077,7 +2077,7 @@ bool AP_AHRS::pre_arm_check(bool requires_position, char *failure_msg, uint8_t f
// ensure we're using the configured backend, but bypass in compass-less cases:
if (ekf_type() != active_EKF_type() && AP::compass().use_for_yaw()) {
hal.util->snprintf(failure_msg, failure_msg_len, "AHRS: not using configured AHRS type");
hal.util->snprintf(failure_msg, failure_msg_len, "not using configured AHRS type");
return false;
}