forked from Archive/PX4-Autopilot
px4io driver: use flighttermination circuit breaker
This commit is contained in:
parent
331de9b6ad
commit
8dbe6a6dc0
|
@ -1169,7 +1169,8 @@ PX4IO::io_set_arming_state()
|
||||||
clear |= PX4IO_P_SETUP_ARMING_LOCKDOWN;
|
clear |= PX4IO_P_SETUP_ARMING_LOCKDOWN;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (armed.force_failsafe) {
|
/* Do not set failsafe if circuit breaker is enabled */
|
||||||
|
if (armed.force_failsafe && !circuit_breaker_enabled("CBRK_FLIGHTTERMINATION", CBRK_FLIGHTTERMINATION_KEY)) {
|
||||||
set |= PX4IO_P_SETUP_ARMING_FORCE_FAILSAFE;
|
set |= PX4IO_P_SETUP_ARMING_FORCE_FAILSAFE;
|
||||||
} else {
|
} else {
|
||||||
clear |= PX4IO_P_SETUP_ARMING_FORCE_FAILSAFE;
|
clear |= PX4IO_P_SETUP_ARMING_FORCE_FAILSAFE;
|
||||||
|
|
Loading…
Reference in New Issue