1
0
mirror of https://gitlab.com/obbart/universal_robots_ros_driver.git synced 2026-04-10 10:00:48 +02:00

Added reconnect to secondary port

This commit is contained in:
Thomas Timm Andersen
2015-09-24 16:10:33 +02:00
parent 039664a1a3
commit 6e9f646b02
3 changed files with 107 additions and 24 deletions

View File

@@ -29,6 +29,8 @@
#include <iostream>
#include <unistd.h>
#include <chrono>
#include <fcntl.h>
#include <sys/types.h>
#ifdef ROS_BUILD
#include <ros/ros.h>
@@ -49,7 +51,7 @@ public:
RobotState* robot_state_;
UrCommunication(std::condition_variable& msg_cond, std::string host);
void start();
bool start();
void halt();
};