Skip to content

Commit

Permalink
pid: restrict limit some again to ensure we don't loose to much motor…
Browse files Browse the repository at this point in the history
… output on 100%
  • Loading branch information
bkleiner committed Jul 31, 2023
1 parent 4d50629 commit 7a1fe30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/flight/pid.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ static const float setpoint_weigth_brushless[3] = {1, 1, 1}; // ALL PID

/// output limit
static const float out_limit_brushed[PID_SIZE] = {1.7, 1.7, 0.5};
static const float out_limit_brushless[PID_SIZE] = {1.0, 1.0, 1.0};
static const float out_limit_brushless[PID_SIZE] = {0.8, 0.8, 0.6};

// limit of integral term (abs)
static const float integral_limit_brushed[PID_SIZE] = {1.7, 1.7, 0.5};
Expand Down

0 comments on commit 7a1fe30

Please sign in to comment.