1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 08:45:36 +03:00

Implemented NFE Race Mode

This commit is contained in:
phobos- 2020-02-13 20:20:01 +01:00
parent 7ed29f455a
commit 8ce268d5f1
4 changed files with 13 additions and 3 deletions

View file

@ -189,6 +189,7 @@ typedef struct pidProfile_s {
uint8_t ff_spike_limit; // FF stick extrapolation lookahead period in ms
uint8_t ff_smooth_factor; // Amount of smoothing for interpolated FF steps
uint8_t dyn_lpf_curve_expo; // set the curve for dynamic dterm lowpass filter
uint8_t level_race_mode; // NFE race mode - when true pitch setpoint calcualtion is gyro based in level mode
} pidProfile_t;
PG_DECLARE_ARRAY(pidProfile_t, PID_PROFILE_COUNT, pidProfiles);