Skip to content

Commit

Permalink
iCubSimulationControl: fix after cleanup interfaces (robotology/yarp#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicogene committed May 21, 2018
1 parent a2062f8 commit b199c89
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1674,6 +1674,11 @@ bool iCubSimulationControl::calibrateRaw(int axis, double p)
return NOT_YET_IMPLEMENTED("calibrateRaw");
}

bool iCubSimulationControl::calibrateRaw(int axis, unsigned int type, double p1, double p2, double p3)
{
return NOT_YET_IMPLEMENTED("calibrateRaw");
}

bool iCubSimulationControl::doneRaw(int axis)
{
return NOT_YET_IMPLEMENTED("doneRaw");
Expand Down
6 changes: 6 additions & 0 deletions src/simulators/iCubSimulation/wrapper/iCubSimulationControl.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@
#include <yarp/dev/ControlBoardInterfaces.h>
#include <yarp/dev/ControlBoardInterfacesImpl.h>

#ifndef YARP_NO_DEPRECATED //since 3.0.0
#include <yarp/dev/IControlLimits2.h>
#include <yarp/dev/IControlLimits2Impl.h>
#endif

#include "LogicalJoints.h"

//control mode definitions
Expand Down Expand Up @@ -274,6 +279,7 @@ class yarp::dev::iCubSimulationControl :

////// calibration
virtual bool calibrateRaw(int j, double p);
virtual bool calibrateRaw(int axis, unsigned int type, double p1, double p2, double p3);
virtual bool doneRaw(int j);

/////// Limits
Expand Down

0 comments on commit b199c89

Please sign in to comment.