Skip to content

Commit 70542f1

Browse files
committed
Merge pull request #50 from shadow-robot/F_fix_dynamic_reconfigure_bounds
changed the range of dynamic reconfigure to allow negative ones
2 parents 2aa28be + 5ac3336 commit 70542f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cfg/Parameters.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ PACKAGE='control_toolbox'
4040

4141
def generate(gen):
4242
# 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)
43+
gen.add( "p" , double_t, 1,"Proportional gain.", 10.0 , -100000 , 100000)
44+
gen.add( "i" , double_t, 1,"Integral gain.", 0.1 , -1000 , 1000)
45+
gen.add( "d" , double_t, 1,"Derivative gain.", 1.0 , -1000 , 1000)
4646
gen.add( "i_clamp_min" , double_t, 1,"Min bounds for the integral windup", -10.0 , -1000 , 0)
4747
gen.add( "i_clamp_max" , double_t, 1,"Max bounds for the integral windup", 10.0 , 0 , 1000)
4848
# PkgName #NodeName #Prefix for generated .h include file, e.g. ParametersConfig.py

0 commit comments

Comments
 (0)