Skip to content
Snippets Groups Projects
Commit e8217967 authored by Fabian Reister's avatar Fabian Reister
Browse files

update

parent d7df2ccd
No related branches found
No related tags found
No related merge requests found
......@@ -91,6 +91,7 @@ namespace armarx::nav::components
updateContext();
server::NavigationStack stack = fac::NavigationStackFactory::create(stackConfig, scene);
server::Navigator navigator{stack, scene, executor};
navigator.moveTo(convert(waypoints), core::NavigationFramesMap.from_name(navigationMode));
......
#pragma once
// RobotAPI
#include <atomic>
#include <RobotAPI/interface/units/PlatformUnitInterface.h>
// Navigation
......@@ -21,10 +22,15 @@ namespace armarx::nav::server
void move(const core::Twist &twist);
void disableAndStop();
void enable();
private:
PlatformUnitInterfacePrx platformUnit;
std::atomic_bool enabled{true};
};
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment