mirror of
https://gitlab.com/obbart/universal_robots_ros_driver.git
synced 2026-04-10 01:50:46 +02:00
Adds prefix to all joint names.
This commit is contained in:
@@ -85,6 +85,10 @@ int main(int argc, char **argv)
|
|||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Add prefix to joint names
|
||||||
|
std::transform (args.joint_names.begin(), args.joint_names.end(), args.joint_names.begin(),
|
||||||
|
[&args](std::string name){return args.prefix + name;});
|
||||||
|
|
||||||
std::string local_ip(getLocalIPAccessibleFromHost(args.host));
|
std::string local_ip(getLocalIPAccessibleFromHost(args.host));
|
||||||
|
|
||||||
URFactory factory(args.host);
|
URFactory factory(args.host);
|
||||||
|
|||||||
Reference in New Issue
Block a user