mirror of
https://github.com/iNavFlight/inav.git
synced 2025-07-20 06:45:14 +03:00
Changed limits for feature settings
This commit is contained in:
parent
dab9f95c69
commit
1b44bd569c
2 changed files with 2 additions and 2 deletions
|
@ -76,7 +76,7 @@ static int8_t loiterDirYaw = 1;
|
|||
static float getSmoothnessCutoffFreq(float baseFreq)
|
||||
{
|
||||
uint16_t smoothness = 10 - navConfig()->fw.control_smoothness;
|
||||
return 0.001f * baseFreq * (float)(smoothness*smoothness*smoothness) + 0.1f;
|
||||
return 0.001f * baseFreq * (float)(smoothness*smoothness*smoothness) + 0.01f;
|
||||
}
|
||||
|
||||
// Calculates the cutoff frequency for smoothing out pitchToThrottleCorrection
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue