Updated dependency turboPmac to 1.1.1
This commit is contained in:
@ -38,6 +38,8 @@ seleneAngleAxis::seleneAngleAxis(seleneGuideController *pController, int axisNo,
|
||||
}
|
||||
}
|
||||
|
||||
seleneAngleAxis::~seleneAngleAxis() {}
|
||||
|
||||
asynStatus seleneAngleAxis::stop(double acceleration) {
|
||||
return liftAxis_->stop(acceleration);
|
||||
}
|
||||
|
@ -32,6 +32,8 @@ class seleneAngleAxis : public turboPmacAxis {
|
||||
seleneAngleAxis(seleneGuideController *pController, int axisNo,
|
||||
seleneLiftAxis *liftAxis);
|
||||
|
||||
virtual ~seleneAngleAxis();
|
||||
|
||||
/**
|
||||
* @brief Implementation of the `stop` function from asynMotorAxis
|
||||
*
|
||||
|
@ -48,6 +48,8 @@ seleneGuideController::seleneGuideController(
|
||||
}
|
||||
}
|
||||
|
||||
seleneGuideController::~seleneGuideController() {}
|
||||
|
||||
asynStatus seleneGuideController::writeInt32(asynUser *pasynUser,
|
||||
epicsInt32 value) {
|
||||
int function = pasynUser->reason;
|
||||
|
@ -34,6 +34,8 @@ class seleneGuideController : public turboPmacController {
|
||||
int numAxes, double movingPollPeriod,
|
||||
double idlePollPeriod, double comTimeout);
|
||||
|
||||
virtual ~seleneGuideController();
|
||||
|
||||
/**
|
||||
* @brief Overloaded function of turboPmacController
|
||||
*
|
||||
|
@ -115,6 +115,8 @@ seleneLiftAxis::seleneLiftAxis(seleneGuideController *pC, int axis1No,
|
||||
}
|
||||
}
|
||||
|
||||
seleneLiftAxis::~seleneLiftAxis() {}
|
||||
|
||||
asynStatus seleneLiftAxis::init() {
|
||||
|
||||
// Local variable declaration
|
||||
|
@ -39,6 +39,8 @@ class seleneLiftAxis : public turboPmacAxis {
|
||||
int axis3No, int axis4No, int axis5No, int axis6No,
|
||||
int liftAxisNo, int angleAxisNo);
|
||||
|
||||
virtual ~seleneLiftAxis();
|
||||
|
||||
/**
|
||||
* @brief Implementation of the `stop` function from asynMotorAxis
|
||||
*
|
||||
|
@ -96,6 +96,8 @@ seleneOffsetAxis::seleneOffsetAxis(seleneGuideController *pController,
|
||||
}
|
||||
}
|
||||
|
||||
seleneOffsetAxis::~seleneOffsetAxis() {}
|
||||
|
||||
asynStatus seleneOffsetAxis::init() {
|
||||
|
||||
// Local variable declaration
|
||||
|
@ -30,6 +30,8 @@ class seleneOffsetAxis : public turboPmacAxis {
|
||||
seleneOffsetAxis(seleneGuideController *pController, int axisNo,
|
||||
double xPos, double zPos);
|
||||
|
||||
virtual ~seleneOffsetAxis();
|
||||
|
||||
/**
|
||||
* @brief Initialize this offset axis
|
||||
*
|
||||
|
Submodule turboPmac updated: a11d10cb6c...4bc3388bc6
Reference in New Issue
Block a user