Multicopter mixer: When saturating, compute the new yaw value based on

the reduced thrust value
This commit is contained in:
bresch
2017-05-29 16:50:34 +02:00
committed by Lorenz Meier
parent 29b0043455
commit 3b85ac05e1
@@ -334,7 +334,7 @@ MultirotorMixer::mix(float *outputs, unsigned space, uint16_t *status_reg)
} else {
yaw = (1.0f - ((roll * _rotors[i].roll_scale + pitch * _rotors[i].pitch_scale) *
roll_pitch_scale + thrust + boost)) / _rotors[i].yaw_scale;
roll_pitch_scale + (thrust - thrust_reduction) + boost)) / _rotors[i].yaw_scale;
}
}
}