File: NodeletThrottle.cfg

package info (click to toggle)
ros-nodelet-core 1.11.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 596 kB
  • sloc: cpp: 2,473; python: 367; xml: 171; makefile: 7
file content (8 lines) | stat: -rwxr-xr-x 313 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
#! /usr/bin/env python3

from dynamic_reconfigure.parameter_generator_catkin import *

gen = ParameterGenerator()
gen.add("update_rate", double_t, 0, "Maximum update rate of throttle", -1.0, -1.0) # No max rate

exit(gen.generate('nodelet_topic_tools', "nodelet_throttle_dynamic_reconfigure", "NodeletThrottle"))