1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 12:55:19 +03:00

Fix Filter Init Loop

This commit is contained in:
borisbstyle 2016-11-26 00:08:18 +01:00
parent 0d53911257
commit af8453c224

View file

@ -147,6 +147,8 @@ static void pidInitFilters(const pidProfile_t *pidProfile)
ptermYawFilter = &pt1FilterYaw;
pt1FilterInit(ptermYawFilter, pidProfile->yaw_lpf_hz, dT);
}
initialized = true;
}
// Betaflight pid controller, which will be maintained in the future with additional features specialised for current (mini) multirotor usage.