1 #ifndef CONTROLDEV_GENERICTASK_TASK_HPP 2 #define CONTROLDEV_GENERICTASK_TASK_HPP 4 #include "controldev/GenericTaskBase.hpp" 21 RTT::OutputPort<double> *
port;
27 GenericTask(std::string
const& name =
"controldev::GenericTask");
28 GenericTask(std::string
const& name, RTT::ExecutionEngine* engine);
friend class GenericTaskBase
Definition: GenericTask.hpp:11
Definition: ControlDevTypes.hpp:11
AxisPort portDesc
Definition: GenericTask.hpp:20
virtual bool startHook()
This hook is called by Orocos when the state machine transitions from Stopped to Running.
Definition: GenericTask.cpp:39
virtual bool updateRawCommand(RawCommand &rcmd)=0
virtual bool configureHook()
This hook is called by Orocos when the state machine transitions from PreOperational to Stopped...
Definition: GenericTask.cpp:18
RTT::OutputPort< double > * port
Definition: GenericTask.hpp:21
GenericTask(std::string const &name="controldev::GenericTask")
Definition: GenericTask.cpp:6
Definition: GenericTask.hpp:17
std::vector< double > axisScales
Definition: GenericTask.hpp:25
Definition: ControlDevTypes.hpp:8
virtual void updateHook()
This hook is called by Orocos when the component is in the Running state, at each activity step...
Definition: GenericTask.cpp:53
virtual int getFileDescriptor()=0
Definition: GenericTask.hpp:9
std::vector< AxisPortHandle > axisHandles
Definition: GenericTask.hpp:24
A data structure for raw data values of input devices.
Definition: ControlDevTypes.hpp:27
virtual ~GenericTask()
Definition: GenericTask.cpp:14
virtual void stopHook()
This hook is called by Orocos when the component is in the RunTimeError state, at each activity step...
Definition: GenericTask.cpp:90