Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup duplicate entries in the msg definition #179

Merged
merged 1 commit into from
Mar 12, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions control_msgs/msg/PidState.msg
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,15 @@ float64 error
# derivative of error
float64 error_dot

# equals error
float64 p_error
# weighted integral of error
float64 i_error
# equals derivative of error
float64 d_error
float64 i_term

# proportional gain
float64 p_term
float64 p_gain
# integral gain
float64 i_term
float64 i_gain
# derivative gain
float64 d_term
float64 d_gain
# upper integral clamp.
float64 i_max
# lower integral clamp.
Expand Down