We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97213da commit b93c730Copy full SHA for b93c730
tests/test_spline_interpolation.cpp
@@ -122,6 +122,11 @@ class SplineInterpolationTest : public ::testing::Test
122
123
void SetUp()
124
{
125
+ step_time_ = 0.002;
126
+ if (g_my_robot->ur_driver_->getVersion().major < 5)
127
+ {
128
+ step_time_ = 0.008;
129
+ }
130
std::string safety_status;
131
g_my_robot->dashboard_client_->commandSafetyStatus(safety_status);
132
bool is_protective_stopped = safety_status.find("PROTECTIVE_STOP") != std::string::npos;
0 commit comments