mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-11 10:28:29 -04:00
Copter: pre-arm check that gyro cal succeeded
This commit is contained in:
parent
d309ecb587
commit
eb594775b7
@ -378,6 +378,14 @@ static void pre_arm_checks(bool display_failure)
|
||||
return;
|
||||
}
|
||||
|
||||
// check gyros calibrated successfully
|
||||
if(!ins.gyro_calibrated_ok_all()) {
|
||||
if (display_failure) {
|
||||
gcs_send_text_P(SEVERITY_HIGH,PSTR("PreArm: Gyro cal failed"));
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
#if INS_MAX_INSTANCES > 1
|
||||
// check all gyros are consistent
|
||||
if (ins.get_gyro_count() > 1) {
|
||||
|
Loading…
Reference in New Issue
Block a user