Skip to content

Commit

Permalink
Fix for compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
hjd1964 committed Feb 19, 2023
1 parent 6adfc2c commit ad1228b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/QuickPID.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ QuickPID::QuickPID(float* Input, float* Output, float* Setpoint,
Simplified constructor which uses defaults for remaining parameters.
**********************************************************************************/
QuickPID::QuickPID(float* Input, float* Output, float* Setpoint)
: QuickPID::QuickPID(Input, Output, Setpoint, dispKp, dispKi, dispKd,
: QuickPID::QuickPID(Input, Output, Setpoint, 0, 0, 0,
pmode = pMode::pOnError,
dmode = dMode::dOnMeas,
iawmode = iAwMode::iAwCondition,
Expand Down

0 comments on commit ad1228b

Please sign in to comment.