mirror of
https://gitlab.com/obbart/universal_robots_ros_driver.git
synced 2026-04-12 19:10:47 +02:00
Changed uint to unsigned int for better cross-platform performance
This commit is contained in:
@@ -17,11 +17,13 @@
|
||||
#include "ur_realtime_communication.h"
|
||||
|
||||
class UrDriver {
|
||||
private:
|
||||
double maximum_time_step_;
|
||||
public:
|
||||
UrRealtimeCommunication* rt_interface_;
|
||||
|
||||
UrDriver(std::condition_variable& msg_cond, std::string host,
|
||||
uint safety_count_max = 12);
|
||||
unsigned int safety_count_max = 12);
|
||||
void start();
|
||||
void halt();
|
||||
void setSpeed(double q0, double q1, double q2, double q3, double q4,
|
||||
|
||||
Reference in New Issue
Block a user