Skip to content
Snippets Groups Projects

RT controller and simplification

Merged Fabian Reister requested to merge chore/rt-controller-and-simplification into master
1 file
+ 2
3
Compare changes
  • Side-by-side
  • Inline
@@ -290,10 +290,9 @@ namespace armarx::navigation::components::example_client
ARMARX_INFO << "Moving to goal pose";
// Start moving to goal position using above config.
auto& virtualRobotReader = virtualRobotReaderPlugin->get();
auto& virtualRobotReader = virtualRobotReaderPlugin->get();
auto robot =
virtualRobotReader.getSynchronizedRobot(properties.robotName, armarx::Clock::Now());
auto robot = virtualRobotReader.getSynchronizedRobot(properties.robotName);
ARMARX_CHECK_NOT_NULL(robot);
const core::Pose initialPose(robot->getGlobalPose());
Loading