mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-22 08:38:36 -04:00
AP_Arming: reduce length of internal errors errorstring prefix
MissionPlanner's HUD requires a short string for this to be useful
This commit is contained in:
parent
2f0a4ff1ab
commit
bca411b2c4
@ -664,7 +664,7 @@ bool AP_Arming::system_checks(bool report)
|
||||
}
|
||||
}
|
||||
if (AP::internalerror().errors() != 0) {
|
||||
check_failed(ARMING_CHECK_NONE, report, "Internal errors detected (0x%x)", AP::internalerror().errors());
|
||||
check_failed(ARMING_CHECK_NONE, report, "Internal errors (0x%x)", AP::internalerror().errors());
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user