Skip to content

Commit 6ea024f

Browse files
committed
Updated version check, as 5.23 has been released
1 parent 1d785d9 commit 6ea024f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

examples/direct_torque_control.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,7 @@ int main(int argc, char* argv[])
7474
// software versions.
7575
{
7676
auto robot_version = g_my_robot->getUrDriver()->getVersion();
77-
// ToDo: Increase to 5.23.0 once released
78-
if (robot_version < urcl::VersionInformation::fromString("5.22.0") ||
77+
if (robot_version < urcl::VersionInformation::fromString("5.23.0") ||
7978
(robot_version.major > 5 && robot_version < urcl::VersionInformation::fromString("10.10.0")))
8079
{
8180
URCL_LOG_ERROR("This example requires a robot with at least version 5.23.0 / 10.10.0. Your robot has version %s.",

0 commit comments

Comments
 (0)