1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 00:05:33 +03:00

Replace old lowpass with BiQuad for Vbat and Servo

This commit is contained in:
borisbstyle 2016-02-03 14:33:43 +01:00
parent eebacc2542
commit 27772ba56a
7 changed files with 23 additions and 170 deletions

View file

@ -334,7 +334,7 @@ void resetMixerConfig(mixerConfig_t *mixerConfig) {
mixerConfig->yaw_jump_prevention_limit = 200;
#ifdef USE_SERVOS
mixerConfig->tri_unarmed_servo = 1;
mixerConfig->servo_lowpass_freq = 400;
mixerConfig->servo_lowpass_freq = 400.0f;
mixerConfig->servo_lowpass_enable = 0;
#endif
}