Skip to content

Commit

Permalink
Merge pull request #7106 from iNavFlight/avs-fix-autotune-max-ff-value
Browse files Browse the repository at this point in the history
Limit autotune max FF to 255
  • Loading branch information
avsaase authored Jun 12, 2021
2 parents b239690 + b8189a3 commit 3c7b1b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/flight/pid_autotune.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
#include "flight/pid.h"

#define AUTOTUNE_FIXED_WING_MIN_FF 10
#define AUTOTUNE_FIXED_WING_MAX_FF 300
#define AUTOTUNE_FIXED_WING_MAX_FF 255
#define AUTOTUNE_FIXED_WING_MIN_ROLL_PITCH_RATE 40
#define AUTOTUNE_FIXED_WING_MIN_YAW_RATE 10
#define AUTOTUNE_FIXED_WING_MAX_RATE 720
Expand Down

0 comments on commit 3c7b1b7

Please sign in to comment.