ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
I think dynamic_reconfigure writes the parameters' values as rosparam parameters, which are read the next time you start the node. Use "rosparam list" to look for the params, then you can delete them using "rosparam delete". Restarting the roscore should also clear all saved parameters.
2 | No.2 Revision |
I think dynamic_reconfigure writes the parameters' values as rosparam parameters, which are read the next time you start the node. Use "rosparam list" to look for the params, then you can delete them using "rosparam delete". Restarting the roscore should also clear all saved parameters.
Edit: To clarify, the default values are only used the first time you start the node, afterwards the last set values are used. Restarting roscore will reset the values to the defaults again.