driver/px4io: set default failsafe values

This commit is contained in:
Igor Mišić
2022-06-14 10:35:33 +02:00
committed by Beat Küng
parent 04c2d0fe97
commit 7c1da8d608
+8
View File
@@ -803,6 +803,14 @@ void PX4IO::update_params()
int32_t pwm_fail_new = _mixing_output.failsafeValue(i);
param_set(param_find(str), &pwm_fail_new);
}
} else {
if (pwm_default_channel_mask & 1 << i) {
_mixing_output.failsafeValue(i) = PWM_MOTOR_OFF;
} else {
_mixing_output.failsafeValue(i) = PWM_SERVO_STOP;
}
}
}
}