-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds dynamic reconfigure for odometry calibration of atrvjr node (rflex)
- Loading branch information
Mikhail Medvedev
committed
Nov 9, 2012
1 parent
749ad91
commit ce7fc09
Showing
8 changed files
with
74 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#! /usr/bin/env python | ||
|
||
PACKAGE='rflex' | ||
import roslib | ||
roslib.load_manifest(PACKAGE) | ||
|
||
from dynamic_reconfigure.parameter_generator import * | ||
|
||
gen = ParameterGenerator() | ||
# Name Type Level Description Default Min Max | ||
gen.add("odo_distance_conversion", int_t, 0, "Arbitrary units per meter.", 93810, 1, 188000) | ||
gen.add("odo_angle_conversion", int_t, 0, "Arbitrary units per radian.", 38500, 1, 78000) | ||
|
||
exit(gen.generate(PACKAGE, "rflex", "AtrvjrParams")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters