 |
YARP
Yet Another Robot Platform
|
|
Go to the documentation of this file.
9 #ifndef YARP_DEV_ICONTROLLIMITSIMPL_H
10 #define YARP_DEV_ICONTROLLIMITSIMPL_H
43 bool initialize (
int size,
const int *amap,
const double *enc,
const double *zos);
64 bool setLimits(
int axis,
double min,
double max)
override;
65 bool getLimits(
int axis,
double *min,
double *max)
override;
66 bool setVelLimits(
int axis,
double min,
double max)
override;
67 bool getVelLimits(
int axis,
double *min,
double *max)
override;
92 bool NOT_YET_IMPLEMENTED(
const char *func=0)
95 yError(
"%s: not yet implemented\n", func);
97 yError(
"Function not yet implemented\n");
111 return NOT_YET_IMPLEMENTED(
"setLimitsRaw");
116 return NOT_YET_IMPLEMENTED(
"getLimitsRaw");
121 return NOT_YET_IMPLEMENTED(
"setVelLimitsRaw");
126 return NOT_YET_IMPLEMENTED(
"getVelLimitsRaw");
134 #endif // YARP_DEV_ICONTROLLIMITSIMPL_H
Stub implementation of IControlLimitRaw interface.
define control board standard interfaces
bool setVelLimitsRaw(int axis, double min, double max) override
Set the software speed limits for a particular axis, the behavior of the control card when these limi...
virtual ~StubImplControlLimitsRaw()
Destructor.
Interface for control devices, commands to get/set position and veloity limits.
Interface for control devices.
IControlLimitsRaw * iLimits2
The main, catch-all namespace for YARP.
class ImplementControlLimits; class StubImplControlLimitsRaw;
bool getLimitsRaw(int axis, double *min, double *max) override
Get the software limits for a particular axis.
bool setLimitsRaw(int axis, double min, double max) override
Set the software limits for a particular axis, the behavior of the control card when these limits are...
bool getVelLimitsRaw(int axis, double *min, double *max) override
Get the software speed limits for a particular axis.