GenericPlugin.cfg 276 B

1234567
  1. #!/usr/bin/env python
  2. from dynamic_reconfigure.parameter_generator_catkin import ParameterGenerator, bool_t
  3. gen = ParameterGenerator()
  4. gen.add("enabled", bool_t, 0, "Whether to apply this plugin or not", True)
  5. exit(gen.generate("costmap_2d", "costmap_2d", "GenericPlugin"))