Skip to content

Commit bf26ea5

Browse files
author
Felix Exner
authored
replaced ros references that shouldn't be there (#178)
We want to keep the pure driver part ros-independent
1 parent b466518 commit bf26ea5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ur_robot_driver/src/ur/ur_driver.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,9 +273,9 @@ void UrDriver::checkCalibration(const std::string& checksum)
273273

274274
while (!consumer.isChecked())
275275
{
276-
ros::Duration(1).sleep();
276+
std::this_thread::sleep_for(std::chrono::seconds(1));
277277
}
278-
ROS_DEBUG_STREAM("Got calibration information from robot.");
278+
LOG_DEBUG("Got calibration information from robot.");
279279
}
280280

281281
rtde_interface::RTDEWriter& UrDriver::getRTDEWriter()

0 commit comments

Comments
 (0)