calls to getActualToolFlangePose seem to not execute
It seems like the code stops when I call getActualToolFlangePose. Are there specific requirements to get it working? I tried to add a set tcp offset in the middle here but it still seems to get stuck. Example code: ``` const auto pose = rtde_recv->getActualTCPPose(); std::cout << "pose" << std::endl; std::cout << "x: " << pose[0] << "y: " << pose[1] << "z: " << pose[2] << std::endl; std::cout << "rx: " << pose[3] << "ry: " << pose[4] << "rz: " << pose[5] << std::endl; const std::vector<double> tcp_offset = {0,0,0,0,0,0}; rtde_control->setTcp(tcp_offset); if (rtde_control->isConnected()) { std::cout << "BEFORE getActualToolFlangePose()" << std::endl; const auto pose2 = rtde_control->getActualToolFlangePose(); std::cout << "AFTER getActualToolFlangePose()" << std::endl; std::cout << "pose2" << std::endl; std::cout << "x: " << pose2[0] << "y: " << pose2[1] << "z: " << pose2[2] << std::endl; std::cout << "rx: " << pose2[3] << "ry: " << pose2[4] << "rz: " << pose2[5] << std::endl; } ``` Output: ``` pose x: -0.632778y: -0.292696z: 1.06155 rx: 0.99222ry: 1.50268rz: -1.48957 BEFORE getActualToolFlangePose() ```
issue