ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
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.