We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71652eb commit ec2d96eCopy full SHA for ec2d96e
src/common/pid.cpp
@@ -9,6 +9,7 @@ PIDController::PIDController(float P, float I, float D, float ramp, float limit)
9
, integral_prev(0.0f)
10
, error_prev(0.0f)
11
, output_prev(0.0f)
12
+ , integral_antiwindup_prev(0.0f)
13
{
14
timestamp_prev = _micros();
15
}
0 commit comments