Skip to content
Snippets Groups Projects
Commit 87b80103 authored by Lorenz Meier's avatar Lorenz Meier
Browse files

IO firmware: Fix condition for output enable to also allow no throttle arming to enable outputs

parent 7b14a025
No related branches found
No related tags found
No related merge requests found
......@@ -281,7 +281,7 @@ mixer_tick(void)
isr_debug(5, "> PWM disabled");
}
if (mixer_servos_armed && should_arm) {
if (mixer_servos_armed && (should_arm || should_arm_nothrottle)) {
/* update the servo outputs. */
for (unsigned i = 0; i < PX4IO_SERVO_COUNT; i++) {
up_pwm_servo_set(i, r_page_servos[i]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment