Skip to content

Commit

Permalink
Merge pull request #50 from shadow-robot/F_fix_dynamic_reconfigure_bo…
Browse files Browse the repository at this point in the history
…unds

changed the range of dynamic reconfigure to allow negative ones
  • Loading branch information
bmagyar committed Apr 15, 2016
2 parents 2aa28be + 5ac3336 commit 70542f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cfg/Parameters.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ PACKAGE='control_toolbox'

def generate(gen):
# Name Type Level Description Default Min Max
gen.add( "p" , double_t, 1,"Proportional gain.", 10.0 , 0 , 100000)
gen.add( "i" , double_t, 1,"Integral gain.", 0.1 , 0 , 1000)
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)
gen.add( "i_clamp_min" , double_t, 1,"Min bounds for the integral windup", -10.0 , -1000 , 0)
gen.add( "i_clamp_max" , double_t, 1,"Max bounds for the integral windup", 10.0 , 0 , 1000)
# PkgName #NodeName #Prefix for generated .h include file, e.g. ParametersConfig.py
Expand Down

0 comments on commit 70542f1

Please sign in to comment.