Update pid.c

This commit is contained in:
Vidalcris 2017-07-23 13:54:22 +02:00 committed by GitHub
parent 4546372dac
commit c4f3a6101d
1 changed files with 1 additions and 1 deletions

View File

@ -450,7 +450,7 @@ void pidController(const pidProfile_t *pidProfile, const rollAndPitchTrims_t *an
previousRateError[axis] = rD;
// if crash recovery is on and accelerometer enabled then check for a crash
if (pidProfile->crash_recovery && sensors(SENSOR_ACC) && inCrashRecoveryMode ==false) {
if (pidProfile->crash_recovery && sensors(SENSOR_ACC) && inCrashRecoveryMode == false) {
if (motorMixRange >= 1.0f
&& ABS(delta) > crashDtermThreshold
&& ABS(errorRate) > crashGyroThreshold