Skip to content

Commit 254c779

Browse files
committed
Adds members to pid state message
Adds members to pid state message to support additional parameters defined in the PID controller for saturation and anti-windup features.
1 parent 9f15e1a commit 254c779

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

control_msgs/msg/PidState.msg

+9-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,17 @@ float64 p_term
1919
float64 i_term
2020
# derivative gain
2121
float64 d_term
22-
# upper integral clamp.
22+
23+
# upper integral clamp
2324
float64 i_max
24-
# lower integral clamp.
25+
# lower integral clamp
2526
float64 i_min
27+
# upper output clamp
28+
float64 u_max
29+
# lower output clamp
30+
float64 u_min
31+
# tracking time constant
32+
float64 trk_tc
2633

2734
# output of the PID controller
2835
float64 output

0 commit comments

Comments
 (0)