Browse Source

AP_Arming: allow arming with BRD_IO_ENABLE=0

master
Andrew Tridgell 3 years ago
parent
commit
3fdae69413
  1. 2
      libraries/AP_Arming/AP_Arming.cpp

2
libraries/AP_Arming/AP_Arming.cpp

@ -886,7 +886,7 @@ bool AP_Arming::servo_checks(bool report) const @@ -886,7 +886,7 @@ bool AP_Arming::servo_checks(bool report) const
}
#if HAL_WITH_IO_MCU
if (!iomcu.healthy()) {
if (!iomcu.healthy() && AP_BoardConfig::io_enabled()) {
check_failed(report, "IOMCU is unhealthy");
check_passed = false;
}

Loading…
Cancel
Save