You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/*! * \brief Get PID gains for the controller. * \param p The proportional gain. * \param i The integral gain. * \param d The derivative gain. * \param i_max Upper integral clamp. * \param i_min Lower integral clamp. * \param antiwindup Antiwindup functionality. When set to true, limits the integral error to prevent windup; otherwise, constrains the integral contribution to the control output. i_max and i_min are applied in both scenarios.*/voidget_gains(
double & p, double & i, double & d, double & i_max, double & i_min, bool & antiwindup);
/*! * \brief Get PID gains for the controller. * \overload*/voidget_gains(double & p, double & i, double & d, double & i_max, double & i_min);
Should we try using https://www.doxygen.nl/manual/commands.html#cmdoverload instead of copy pasting all the parameter descriptions of the overloaded methods? (see the PID class)
but how?
This works in doxygen
but is not parsed nicely from vscode.
https://devblogs.microsoft.com/cppblog/improved-doxygen-overload-resolution/ it seems that this feature also does not exist yet in the released version.
Any chance to satisfy both worlds?
The text was updated successfully, but these errors were encountered: