ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

From the command line, you can delete it with:

rosparam delete /my_node

This should get rid of all parameters in your node's namespace. Alternatively, when using a launch file you can use clear_params (see here):

<node name="foo" pkg="bar" type="baz" clear_params="true" />

This will get rid of all params in namespace foo before launching the node.