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.
2 parents 2aa28be + 5ac3336 commit 70542f1Copy full SHA for 70542f1
cfg/Parameters.cfg
@@ -40,9 +40,9 @@ PACKAGE='control_toolbox'
40
41
def generate(gen):
42
# Name Type Level Description Default Min Max
43
- gen.add( "p" , double_t, 1,"Proportional gain.", 10.0 , 0 , 100000)
44
- gen.add( "i" , double_t, 1,"Integral gain.", 0.1 , 0 , 1000)
45
- gen.add( "d" , double_t, 1,"Derivative gain.", 1.0 , 0 , 1000)
+ gen.add( "p" , double_t, 1,"Proportional gain.", 10.0 , -100000 , 100000)
+ gen.add( "i" , double_t, 1,"Integral gain.", 0.1 , -1000 , 1000)
+ gen.add( "d" , double_t, 1,"Derivative gain.", 1.0 , -1000 , 1000)
46
gen.add( "i_clamp_min" , double_t, 1,"Min bounds for the integral windup", -10.0 , -1000 , 0)
47
gen.add( "i_clamp_max" , double_t, 1,"Max bounds for the integral windup", 10.0 , 0 , 1000)
48
# PkgName #NodeName #Prefix for generated .h include file, e.g. ParametersConfig.py
0 commit comments