diff --git a/src/main/fc/fc_rc.c b/src/main/fc/fc_rc.c index bf2def8ba9..bc0c47ecaf 100755 --- a/src/main/fc/fc_rc.c +++ b/src/main/fc/fc_rc.c @@ -166,7 +166,7 @@ static void scaleRcCommandToFpvCamAngle(void) { const int16_t rcCommandSpeed = rcCommand[THROTTLE] - rcCommandThrottlePrevious[index]; if(ABS(rcCommandSpeed) > throttleVelocityThreshold) - pidSetItermAccelerator(0.0001f * currentPidProfile->itermAcceleratorGain); + pidSetItermAccelerator(0.001f * currentPidProfile->itermAcceleratorGain); else pidSetItermAccelerator(1.0f); }