AP_NavEKF: libraries_Text_revision

text revision of messages
This commit is contained in:
Luis Vale Gonçalves 2015-11-26 08:08:58 +11:00 committed by Andrew Tridgell
parent e9ba768bae
commit 40caec8afb

View File

@ -425,7 +425,7 @@ bool NavEKF::InitialiseFilterDynamic(void)
core = new NavEKF_core(*this, _ahrs, _baro, _rng);
if (core == nullptr) {
_enable.set(0);
GCS_MAVLINK::send_statustext_all(MAV_SEVERITY_CRITICAL, "NavEKF: allocation failed");
GCS_MAVLINK::send_statustext_all(MAV_SEVERITY_CRITICAL, "NavEKF: Allocation failed");
return false;
}
}
@ -442,7 +442,7 @@ bool NavEKF::InitialiseFilterBootstrap(void)
core = new NavEKF_core(*this, _ahrs, _baro, _rng);
if (core == nullptr) {
_enable.set(0);
GCS_MAVLINK::send_statustext_all(MAV_SEVERITY_CRITICAL, "NavEKF: allocation failed");
GCS_MAVLINK::send_statustext_all(MAV_SEVERITY_CRITICAL, "NavEKF: Allocation failed");
return false;
}
}