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 a0ee07e357
commit cdd7c57ded
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}
}