Skip to content

Commit f4a563e

Browse files
committed
Update RT setup documentation to point to urcl docs
1 parent fd2fda3 commit f4a563e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/helpers.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333
#include <fstream>
3434
#include <iostream>
3535

36+
const std::string RT_DOC_URL = "https://docs.universal-robots.com/Universal_Robots_ROS_Documentation/doc/"
37+
"ur_client_library/doc/real_time.html";
38+
3639
namespace urcl
3740
{
3841
bool setFiFoScheduling(pthread_t& thread, const int priority)
@@ -48,8 +51,8 @@ bool setFiFoScheduling(pthread_t& thread, const int priority)
4851
{
4952
URCL_LOG_WARN("Your system/user seems not to be setup for FIFO scheduling. We recommend using a lowlatency "
5053
"kernel with FIFO scheduling. See "
51-
"https://github.com/UniversalRobots/Universal_Robots_ROS_Driver/blob/master/ur_robot_driver/"
52-
"doc/real_time.md for details.");
54+
"%s for details.",
55+
RT_DOC_URL.c_str());
5356
break;
5457
}
5558
default:

0 commit comments

Comments
 (0)