YARP
Yet Another Robot Platform
yarp::dev::IPositionControlRaw Class Referenceabstract

Interface for a generic control board device implementing position control in encoder coordinates. More...

#include <yarp/dev/IPositionControl.h>

+ Inheritance diagram for yarp::dev::IPositionControlRaw:

Public Member Functions

virtual ~IPositionControlRaw ()
 Destructor. More...
 
virtual bool getAxes (int *ax)=0
 Get the number of controlled axes. More...
 
virtual bool positionMoveRaw (int j, double ref)=0
 Set new reference point for a single axis. More...
 
virtual bool positionMoveRaw (const double *refs)=0
 Set new reference point for all axes. More...
 
virtual bool relativeMoveRaw (int j, double delta)=0
 Set relative position. More...
 
virtual bool relativeMoveRaw (const double *deltas)=0
 Set relative position, all joints. More...
 
virtual bool checkMotionDoneRaw (int j, bool *flag)=0
 Check if the current trajectory is terminated. More...
 
virtual bool checkMotionDoneRaw (bool *flag)=0
 Check if the current trajectory is terminated. More...
 
virtual bool setRefSpeedRaw (int j, double sp)=0
 Set reference speed for a joint, this is the speed used during the interpolation of the trajectory. More...
 
virtual bool setRefSpeedsRaw (const double *spds)=0
 Set reference speed on all joints. More...
 
virtual bool setRefAccelerationRaw (int j, double acc)=0
 Set reference acceleration for a joint. More...
 
virtual bool setRefAccelerationsRaw (const double *accs)=0
 Set reference acceleration on all joints. More...
 
virtual bool getRefSpeedRaw (int j, double *ref)=0
 Get reference speed for a joint. More...
 
virtual bool getRefSpeedsRaw (double *spds)=0
 Get reference speed of all joints. More...
 
virtual bool getRefAccelerationRaw (int j, double *acc)=0
 Get reference acceleration for a joint. More...
 
virtual bool getRefAccelerationsRaw (double *accs)=0
 Get reference acceleration of all joints. More...
 
virtual bool stopRaw (int j)=0
 Stop motion, single joint. More...
 
virtual bool stopRaw ()=0
 Stop motion, multiple joints. More...
 
virtual bool positionMoveRaw (const int n_joint, const int *joints, const double *refs)=0
 Set new reference point for a subset of joints. More...
 
virtual bool relativeMoveRaw (const int n_joint, const int *joints, const double *deltas)=0
 Set relative position for a subset of joints. More...
 
virtual bool checkMotionDoneRaw (const int n_joint, const int *joints, bool *flags)=0
 Check if the current trajectory is terminated. More...
 
virtual bool setRefSpeedsRaw (const int n_joint, const int *joints, const double *spds)=0
 Set reference speed on all joints. More...
 
virtual bool setRefAccelerationsRaw (const int n_joint, const int *joints, const double *accs)=0
 Set reference acceleration on all joints. More...
 
virtual bool getRefSpeedsRaw (const int n_joint, const int *joints, double *spds)=0
 Get reference speed of all joints. More...
 
virtual bool getRefAccelerationsRaw (const int n_joint, const int *joints, double *accs)=0
 Get reference acceleration for a joint. More...
 
virtual bool stopRaw (const int n_joint, const int *joints)=0
 Stop motion for subset of joints. More...
 
virtual bool getTargetPositionRaw (const int joint, double *ref)
 Get the last position reference for the specified axis. More...
 
virtual bool getTargetPositionsRaw (double *refs)
 Get the last position reference for all axes. More...
 
virtual bool getTargetPositionsRaw (const int n_joint, const int *joints, double *refs)
 Get the last position reference for the specified group of axes. More...
 

Detailed Description

Interface for a generic control board device implementing position control in encoder coordinates.

Definition at line 29 of file IPositionControl.h.

Constructor & Destructor Documentation

◆ ~IPositionControlRaw()

virtual yarp::dev::IPositionControlRaw::~IPositionControlRaw ( )
inlinevirtual

Destructor.

Definition at line 35 of file IPositionControl.h.

Member Function Documentation

◆ checkMotionDoneRaw() [1/3]

virtual bool yarp::dev::IPositionControlRaw::checkMotionDoneRaw ( bool *  flag)
pure virtual

Check if the current trajectory is terminated.

Non blocking.

Parameters
flagis a pointer to return value ("and" of all joints)
Returns
true/false on network communication (value you actually want is stored in *flag)

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ checkMotionDoneRaw() [2/3]

virtual bool yarp::dev::IPositionControlRaw::checkMotionDoneRaw ( const int  n_joint,
const int *  joints,
bool *  flags 
)
pure virtual

Check if the current trajectory is terminated.

Non blocking.

Parameters
jointspointer to the array of joint numbers
flagtrue if the trajectory is terminated, false otherwise (a single value which is the 'and' of all joints')
Returns
true/false if network communication went well.

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ checkMotionDoneRaw() [3/3]

virtual bool yarp::dev::IPositionControlRaw::checkMotionDoneRaw ( int  j,
bool *  flag 
)
pure virtual

Check if the current trajectory is terminated.

Non blocking.

Parameters
jis the axis number
flagis a pointer to return value
Returns
true/false on network communication (value you actually want is stored in *flag)

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ getAxes()

virtual bool yarp::dev::IPositionControlRaw::getAxes ( int *  ax)
pure virtual

Get the number of controlled axes.

This command asks the number of controlled axes for the current physical interface.

Parameters
axstorage to return param
Returns
true/false.

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ getRefAccelerationRaw()

virtual bool yarp::dev::IPositionControlRaw::getRefAccelerationRaw ( int  j,
double *  acc 
)
pure virtual

Get reference acceleration for a joint.

Returns the acceleration used to generate the trajectory profile.

Parameters
jjoint number
accpointer to storage for the return value
Returns
true/false on success/failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ getRefAccelerationsRaw() [1/2]

virtual bool yarp::dev::IPositionControlRaw::getRefAccelerationsRaw ( const int  n_joint,
const int *  joints,
double *  accs 
)
pure virtual

Get reference acceleration for a joint.

Returns the acceleration used to generate the trajectory profile.

Parameters
jointspointer to the array of joint numbers
accspointer to the array that will store the acceleration values
Returns
true/false on success/failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ getRefAccelerationsRaw() [2/2]

virtual bool yarp::dev::IPositionControlRaw::getRefAccelerationsRaw ( double *  accs)
pure virtual

Get reference acceleration of all joints.

These are the values used during the interpolation of the trajectory.

Parameters
accspointer to the array that will store the acceleration values.
Returns
true/false on success or failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ getRefSpeedRaw()

virtual bool yarp::dev::IPositionControlRaw::getRefSpeedRaw ( int  j,
double *  ref 
)
pure virtual

Get reference speed for a joint.

Returns the speed used to generate the trajectory profile.

Parameters
jjoint number
refpointer to storage for the return value
Returns
true/false on success or failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ getRefSpeedsRaw() [1/2]

virtual bool yarp::dev::IPositionControlRaw::getRefSpeedsRaw ( const int  n_joint,
const int *  joints,
double *  spds 
)
pure virtual

Get reference speed of all joints.

These are the values used during the interpolation of the trajectory.

Parameters
jointspointer to the array of joint numbers
spdspointer to the array that will store the speed values.
Returns
true/false upon success/failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ getRefSpeedsRaw() [2/2]

virtual bool yarp::dev::IPositionControlRaw::getRefSpeedsRaw ( double *  spds)
pure virtual

Get reference speed of all joints.

These are the values used during the interpolation of the trajectory.

Parameters
spdspointer to the array that will store the speed values.

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ getTargetPositionRaw()

virtual bool yarp::dev::IPositionControlRaw::getTargetPositionRaw ( const int  joint,
double *  ref 
)
inlinevirtual

Get the last position reference for the specified axis.

This is the dual of PositionMove and shall return only values sent using IPositionControl interface. If other interfaces like IPositionDirect are implemented by the device, this call must ignore their values, i.e. this call must never return a reference sent using IPositionDirect::SetPosition

Parameters
reflast reference sent using PositionMove functions
Returns
true/false on success/failure

Reimplemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

Definition at line 226 of file IPositionControl.h.

◆ getTargetPositionsRaw() [1/2]

virtual bool yarp::dev::IPositionControlRaw::getTargetPositionsRaw ( const int  n_joint,
const int *  joints,
double *  refs 
)
inlinevirtual

Get the last position reference for the specified group of axes.

This is the dual of PositionMove and shall return only values sent using IPositionControl interface. If other interfaces like IPositionDirect are implemented by the device, this call must ignore their values, i.e. this call must never return a reference sent using IPositionDirect::SetPosition

Parameters
reflast reference sent using PositionMove functions
Returns
true/false on success/failure

Reimplemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

Definition at line 248 of file IPositionControl.h.

◆ getTargetPositionsRaw() [2/2]

virtual bool yarp::dev::IPositionControlRaw::getTargetPositionsRaw ( double *  refs)
inlinevirtual

Get the last position reference for all axes.

This is the dual of PositionMove and shall return only values sent using IPositionControl interface. If other interfaces like IPositionDirect are implemented by the device, this call must ignore their values, i.e. this call must never return a reference sent using IPositionDirect::SetPosition

Parameters
reflast reference sent using PositionMove functions
Returns
true/false on success/failure

Reimplemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

Definition at line 237 of file IPositionControl.h.

◆ positionMoveRaw() [1/3]

virtual bool yarp::dev::IPositionControlRaw::positionMoveRaw ( const double *  refs)
pure virtual

Set new reference point for all axes.

Parameters
refsarray, new reference points.
Returns
true/false on success/failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ positionMoveRaw() [2/3]

virtual bool yarp::dev::IPositionControlRaw::positionMoveRaw ( const int  n_joint,
const int *  joints,
const double *  refs 
)
pure virtual

Set new reference point for a subset of joints.

Parameters
jointspointer to the array of joint numbers
refspointer to the array specifies the new reference points
Returns
true/false on success/failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ positionMoveRaw() [3/3]

virtual bool yarp::dev::IPositionControlRaw::positionMoveRaw ( int  j,
double  ref 
)
pure virtual

Set new reference point for a single axis.

Parameters
jjoint number
refspecifies the new ref point
Returns
true/false on success/failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ relativeMoveRaw() [1/3]

virtual bool yarp::dev::IPositionControlRaw::relativeMoveRaw ( const double *  deltas)
pure virtual

Set relative position, all joints.

Parameters
deltaspointer to the relative commands
Returns
true/false on success/failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ relativeMoveRaw() [2/3]

virtual bool yarp::dev::IPositionControlRaw::relativeMoveRaw ( const int  n_joint,
const int *  joints,
const double *  deltas 
)
pure virtual

Set relative position for a subset of joints.

Parameters
jointspointer to the array of joint numbers
deltaspointer to the array of relative commands
Returns
true/false on success/failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ relativeMoveRaw() [3/3]

virtual bool yarp::dev::IPositionControlRaw::relativeMoveRaw ( int  j,
double  delta 
)
pure virtual

Set relative position.

The command is relative to the current position of the axis.

Parameters
jjoint axis number
deltarelative command
Returns
true/false on success/failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ setRefAccelerationRaw()

virtual bool yarp::dev::IPositionControlRaw::setRefAccelerationRaw ( int  j,
double  acc 
)
pure virtual

Set reference acceleration for a joint.

This value is used during the trajectory generation.

Parameters
jjoint number
accacceleration value
Returns
true/false upon success/failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ setRefAccelerationsRaw() [1/2]

virtual bool yarp::dev::IPositionControlRaw::setRefAccelerationsRaw ( const double *  accs)
pure virtual

Set reference acceleration on all joints.

This is the valure that is used during the generation of the trajectory.

Parameters
accspointer to the array of acceleration values
Returns
true/false upon success/failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ setRefAccelerationsRaw() [2/2]

virtual bool yarp::dev::IPositionControlRaw::setRefAccelerationsRaw ( const int  n_joint,
const int *  joints,
const double *  accs 
)
pure virtual

Set reference acceleration on all joints.

This is the valure that is used during the generation of the trajectory.

Parameters
jointspointer to the array of joint numbers
accspointer to the array with acceleration values
Returns
true/false upon success/failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ setRefSpeedRaw()

virtual bool yarp::dev::IPositionControlRaw::setRefSpeedRaw ( int  j,
double  sp 
)
pure virtual

Set reference speed for a joint, this is the speed used during the interpolation of the trajectory.

Parameters
jjoint number
spspeed value
Returns
true/false upon success/failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ setRefSpeedsRaw() [1/2]

virtual bool yarp::dev::IPositionControlRaw::setRefSpeedsRaw ( const double *  spds)
pure virtual

Set reference speed on all joints.

These values are used during the interpolation of the trajectory.

Parameters
spdspointer to the array of speed values.
Returns
true/false upon success/failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ setRefSpeedsRaw() [2/2]

virtual bool yarp::dev::IPositionControlRaw::setRefSpeedsRaw ( const int  n_joint,
const int *  joints,
const double *  spds 
)
pure virtual

Set reference speed on all joints.

These values are used during the interpolation of the trajectory.

Parameters
jointspointer to the array of joint numbers
spdspointer to the array with speed values.
Returns
true/false upon success/failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ stopRaw() [1/3]

virtual bool yarp::dev::IPositionControlRaw::stopRaw ( )
pure virtual

Stop motion, multiple joints.

Returns
true/false on success/failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ stopRaw() [2/3]

virtual bool yarp::dev::IPositionControlRaw::stopRaw ( const int  n_joint,
const int *  joints 
)
pure virtual

Stop motion for subset of joints.

Parameters
jointspointer to the array of joint numbers
Returns
true/false on success/failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.

◆ stopRaw() [3/3]

virtual bool yarp::dev::IPositionControlRaw::stopRaw ( int  j)
pure virtual

Stop motion, single joint.

Parameters
jjoint number
Returns
true/false on success/failure

Implemented in yarp::dev::StubImplPositionControlRaw, and FakeMotionControl.


The documentation for this class was generated from the following file: