mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-24 08:45:36 +03:00
ff from interpolated setpoint
This commit is contained in:
parent
3ba5f7e819
commit
91ad2498ff
13 changed files with 319 additions and 5 deletions
|
@ -80,6 +80,12 @@ extern "C" {
|
|||
void beeperConfirmationBeeps(uint8_t) { }
|
||||
bool isLaunchControlActive(void) {return unitLaunchControlActive; }
|
||||
void disarm(void) { }
|
||||
float applyFFLimit(int axis, float value, float Kp, float currentPidSetpoint) {
|
||||
UNUSED(axis);
|
||||
UNUSED(Kp);
|
||||
UNUSED(currentPidSetpoint);
|
||||
return value;
|
||||
}
|
||||
}
|
||||
|
||||
pidProfile_t *pidProfile;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue