dump rosparam at program exit
Is it possible to dump rosparam when the node stops using roslaunch?
On the wiki it is stated, that "dump" and "delete" commands run before load, which is exactly opposite from what I want.
Currently I do it manually like this:
void dumpRooms(std::string yamlFile) {
system("rosparam dump -v "+yamlFile.c_str()+" my_namespace");
}
Asked by smihael on 2015-08-18 09:43:02 UTC
Comments