Simplified handling of velocity mode using standard EPICS motor record fields
This commit is contained in:
@@ -11,6 +11,11 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
|
enum moveMode {
|
||||||
|
positionMode,
|
||||||
|
velocityMode,
|
||||||
|
};
|
||||||
|
|
||||||
struct masterMacsAxisImpl {
|
struct masterMacsAxisImpl {
|
||||||
/*
|
/*
|
||||||
The axis status and axis error of MasterMACS are given as an integer from
|
The axis status and axis error of MasterMACS are given as an integer from
|
||||||
@@ -24,6 +29,9 @@ struct masterMacsAxisImpl {
|
|||||||
bool needInit = true;
|
bool needInit = true;
|
||||||
bool targetReachedUninitialized;
|
bool targetReachedUninitialized;
|
||||||
bool dynamicLimits;
|
bool dynamicLimits;
|
||||||
|
bool canPositionMove;
|
||||||
|
bool canVelocityMove;
|
||||||
|
moveMode lastMoveCommand;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -94,6 +102,9 @@ masterMacsAxis::masterMacsAxis(masterMacsController *pC, int axisNo)
|
|||||||
.timeAtHandshake = 0,
|
.timeAtHandshake = 0,
|
||||||
.targetReachedUninitialized = true,
|
.targetReachedUninitialized = true,
|
||||||
.dynamicLimits = false,
|
.dynamicLimits = false,
|
||||||
|
.canPositionMove = true,
|
||||||
|
.canVelocityMove = false,
|
||||||
|
.lastMoveCommand = positionMode,
|
||||||
})) {
|
})) {
|
||||||
|
|
||||||
asynStatus status = asynSuccess;
|
asynStatus status = asynSuccess;
|
||||||
@@ -190,9 +201,8 @@ asynStatus masterMacsAxis::init() {
|
|||||||
double motVelocity = 0.0;
|
double motVelocity = 0.0;
|
||||||
double motVmax = 0.0;
|
double motVmax = 0.0;
|
||||||
double motAccel = 0.0;
|
double motAccel = 0.0;
|
||||||
int motMode = 0;
|
|
||||||
int dynamicLimits = 0;
|
int dynamicLimits = 0;
|
||||||
int motCanSetMode = 0;
|
int possibleModes = 0;
|
||||||
|
|
||||||
// =========================================================================
|
// =========================================================================
|
||||||
|
|
||||||
@@ -306,36 +316,38 @@ asynStatus masterMacsAxis::init() {
|
|||||||
}
|
}
|
||||||
pMasterMacsA_->dynamicLimits = bool(dynamicLimits);
|
pMasterMacsA_->dynamicLimits = bool(dynamicLimits);
|
||||||
|
|
||||||
// Check the current motor mode
|
|
||||||
status = pC_->read(axisNo_, 07, response);
|
|
||||||
if (status != asynSuccess) {
|
|
||||||
return status;
|
|
||||||
}
|
|
||||||
nvals = sscanf(response, "%d", &motMode);
|
|
||||||
if (nvals != 1) {
|
|
||||||
return pC_->couldNotParseResponse("R07", response, axisNo_,
|
|
||||||
__PRETTY_FUNCTION__, __LINE__);
|
|
||||||
}
|
|
||||||
|
|
||||||
// If the readback value from the controller is 3, it is in velocity mode,
|
|
||||||
// which sinqMotor encodes as a 1. Otherwise, it is in position mode.
|
|
||||||
setAxisParamChecked(this, motorMode, motMode == 3);
|
|
||||||
|
|
||||||
// Check if the motor can switch its mode
|
// Check if the motor can switch its mode
|
||||||
status = pC_->read(axisNo_, 31, response);
|
status = pC_->read(axisNo_, 31, response);
|
||||||
if (status != asynSuccess) {
|
if (status != asynSuccess) {
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
nvals = sscanf(response, "%d", &motCanSetMode);
|
nvals = sscanf(response, "%d", &possibleModes);
|
||||||
if (nvals != 1) {
|
if (nvals != 1) {
|
||||||
return pC_->couldNotParseResponse("R31", response, axisNo_,
|
return pC_->couldNotParseResponse("R31", response, axisNo_,
|
||||||
__PRETTY_FUNCTION__, __LINE__);
|
__PRETTY_FUNCTION__, __LINE__);
|
||||||
}
|
}
|
||||||
|
|
||||||
// If the readback value from the controller is 3, the motor supports both
|
switch (possibleModes) {
|
||||||
// velocity and position mode, otherwise just one of them (the one read out
|
case 1:
|
||||||
// with motMode).
|
pMasterMacsA_->canPositionMove = true;
|
||||||
setAxisParamChecked(this, motorCanSetMode, motCanSetMode == 3);
|
pMasterMacsA_->canVelocityMove = false;
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
pMasterMacsA_->canPositionMove = false;
|
||||||
|
pMasterMacsA_->canVelocityMove = true;
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
pMasterMacsA_->canPositionMove = true;
|
||||||
|
pMasterMacsA_->canVelocityMove = true;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
asynPrint(pC_->pasynUser(), ASYN_TRACE_ERROR,
|
||||||
|
"Controller \"%s\", axis %d => %s, line "
|
||||||
|
"%d:\nunexpected answer %d for R31 (possible operation "
|
||||||
|
"modes). Expected one of 1, 2 or 3.\n",
|
||||||
|
pC_->portName, axisNo_, __PRETTY_FUNCTION__, __LINE__,
|
||||||
|
possibleModes);
|
||||||
|
}
|
||||||
|
|
||||||
status = readEncoderType();
|
status = readEncoderType();
|
||||||
if (status != asynSuccess) {
|
if (status != asynSuccess) {
|
||||||
@@ -432,10 +444,10 @@ asynStatus masterMacsAxis::doPoll(bool *moving) {
|
|||||||
asynStatus poll_status = asynSuccess;
|
asynStatus poll_status = asynSuccess;
|
||||||
|
|
||||||
// Status of read-write-operations of ASCII commands to the controller
|
// Status of read-write-operations of ASCII commands to the controller
|
||||||
asynStatus rw_status = asynSuccess;
|
asynStatus rwStatus = asynSuccess;
|
||||||
|
|
||||||
// Status of parameter library operations
|
// Status of parameter library operations
|
||||||
asynStatus pl_status = asynSuccess;
|
asynStatus plStatus = asynSuccess;
|
||||||
|
|
||||||
char response[pC_->MAXBUF_] = {0};
|
char response[pC_->MAXBUF_] = {0};
|
||||||
int nvals = 0;
|
int nvals = 0;
|
||||||
@@ -446,6 +458,7 @@ asynStatus masterMacsAxis::doPoll(bool *moving) {
|
|||||||
double previousPosition = 0.0;
|
double previousPosition = 0.0;
|
||||||
double motorRecResolution = 0.0;
|
double motorRecResolution = 0.0;
|
||||||
double handshakePerformed = 0;
|
double handshakePerformed = 0;
|
||||||
|
double actualVelocity = 0.0;
|
||||||
|
|
||||||
// =========================================================================
|
// =========================================================================
|
||||||
|
|
||||||
@@ -484,8 +497,8 @@ asynStatus masterMacsAxis::doPoll(bool *moving) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pC_->read(axisNo_, 86, response);
|
pC_->read(axisNo_, 86, response);
|
||||||
if (rw_status != asynSuccess) {
|
if (rwStatus != asynSuccess) {
|
||||||
return rw_status;
|
return rwStatus;
|
||||||
}
|
}
|
||||||
|
|
||||||
nvals = sscanf(response, "%lf", &handshakePerformed);
|
nvals = sscanf(response, "%lf", &handshakePerformed);
|
||||||
@@ -511,15 +524,15 @@ asynStatus masterMacsAxis::doPoll(bool *moving) {
|
|||||||
getAxisParamChecked(this, motorRecResolution, &motorRecResolution);
|
getAxisParamChecked(this, motorRecResolution, &motorRecResolution);
|
||||||
|
|
||||||
// Read the previous motor position
|
// Read the previous motor position
|
||||||
pl_status = motorPosition(&previousPosition);
|
plStatus = motorPosition(&previousPosition);
|
||||||
if (pl_status != asynSuccess) {
|
if (plStatus != asynSuccess) {
|
||||||
return pl_status;
|
return plStatus;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update the axis status
|
// Update the axis status
|
||||||
rw_status = readAxisStatus();
|
rwStatus = readAxisStatus();
|
||||||
if (rw_status != asynSuccess) {
|
if (rwStatus != asynSuccess) {
|
||||||
return rw_status;
|
return rwStatus;
|
||||||
}
|
}
|
||||||
|
|
||||||
// If we wait for a handshake, but the motor was moving in its last poll
|
// If we wait for a handshake, but the motor was moving in its last poll
|
||||||
@@ -539,23 +552,37 @@ asynStatus masterMacsAxis::doPoll(bool *moving) {
|
|||||||
pMasterMacsA_->targetReachedUninitialized = false;
|
pMasterMacsA_->targetReachedUninitialized = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Read the current position
|
// If moving in velocity mode, read out the current speed. Otherwise, read
|
||||||
rw_status = pC_->read(axisNo_, 12, response);
|
// out the current position
|
||||||
if (rw_status != asynSuccess) {
|
if (pMasterMacsA_->lastMoveCommand == velocityMode && *moving) {
|
||||||
return rw_status;
|
rwStatus = pC_->read(axisNo_, 14, response);
|
||||||
}
|
if (rwStatus != asynSuccess) {
|
||||||
nvals = sscanf(response, "%lf", ¤tPosition);
|
return rwStatus;
|
||||||
if (nvals != 1) {
|
}
|
||||||
return pC_->couldNotParseResponse("R12", response, axisNo_,
|
nvals = sscanf(response, "%lf", &actualVelocity);
|
||||||
__PRETTY_FUNCTION__, __LINE__);
|
if (nvals != 1) {
|
||||||
|
return pC_->couldNotParseResponse("R14", response, axisNo_,
|
||||||
|
__PRETTY_FUNCTION__, __LINE__);
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
rwStatus = pC_->read(axisNo_, 12, response);
|
||||||
|
if (rwStatus != asynSuccess) {
|
||||||
|
return rwStatus;
|
||||||
|
}
|
||||||
|
nvals = sscanf(response, "%lf", ¤tPosition);
|
||||||
|
if (nvals != 1) {
|
||||||
|
return pC_->couldNotParseResponse("R12", response, axisNo_,
|
||||||
|
__PRETTY_FUNCTION__, __LINE__);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Read out the error if either a fault condition status flag has been set or
|
Read out the error if either a fault condition status flag has been set
|
||||||
if a movement has just ended.
|
or if a movement has just ended.
|
||||||
*/
|
*/
|
||||||
if (faultConditionSet() || !(*moving)) {
|
if (faultConditionSet() || !(*moving)) {
|
||||||
rw_status = readAxisError();
|
rwStatus = readAxisError();
|
||||||
}
|
}
|
||||||
|
|
||||||
msgPrintControlKey keyError = msgPrintControlKey(
|
msgPrintControlKey keyError = msgPrintControlKey(
|
||||||
@@ -735,9 +762,9 @@ asynStatus masterMacsAxis::doPoll(bool *moving) {
|
|||||||
// Read out the limits, if the motor is not moving and if the limits are
|
// Read out the limits, if the motor is not moving and if the limits are
|
||||||
// dynamic
|
// dynamic
|
||||||
if (pMasterMacsA_->dynamicLimits && !(*moving)) {
|
if (pMasterMacsA_->dynamicLimits && !(*moving)) {
|
||||||
rw_status = readLimits();
|
rwStatus = readLimits();
|
||||||
if (rw_status != asynSuccess) {
|
if (rwStatus != asynSuccess) {
|
||||||
return rw_status;
|
return rwStatus;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -762,16 +789,19 @@ asynStatus masterMacsAxis::doPoll(bool *moving) {
|
|||||||
setAxisParamChecked(this, motorStatusDone, !(*moving));
|
setAxisParamChecked(this, motorStatusDone, !(*moving));
|
||||||
setAxisParamChecked(this, motorStatusDirection, direction);
|
setAxisParamChecked(this, motorStatusDirection, direction);
|
||||||
|
|
||||||
pl_status = setMotorPosition(currentPosition);
|
plStatus = setMotorPosition(currentPosition);
|
||||||
if (pl_status != asynSuccess) {
|
if (plStatus != asynSuccess) {
|
||||||
return pl_status;
|
return plStatus;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Write the actual velocity to the paramLib
|
||||||
|
setAxisParamChecked(this, motorVelocity, actualVelocity);
|
||||||
|
|
||||||
return poll_status;
|
return poll_status;
|
||||||
}
|
}
|
||||||
|
|
||||||
asynStatus masterMacsAxis::doMoveVelocity(double minVelocity,
|
asynStatus masterMacsAxis::moveVelocity(double minVelocity, double maxVelocity,
|
||||||
double maxVelocity,
|
double acceleration) {
|
||||||
double acceleration) {
|
|
||||||
// Suppress unused variable warning
|
// Suppress unused variable warning
|
||||||
(void)minVelocity;
|
(void)minVelocity;
|
||||||
(void)acceleration;
|
(void)acceleration;
|
||||||
@@ -787,6 +817,18 @@ asynStatus masterMacsAxis::doMoveVelocity(double minVelocity,
|
|||||||
|
|
||||||
// =========================================================================
|
// =========================================================================
|
||||||
|
|
||||||
|
// Can the motor be operated in velocity mode?
|
||||||
|
if (!pMasterMacsA_->canVelocityMove) {
|
||||||
|
asynPrint(pC_->pasynUser(), ASYN_TRACE_ERROR,
|
||||||
|
"Controller \"%s\", axis %d => %s, line %d:\nAxis cannot "
|
||||||
|
"operate in velocity mode.\n",
|
||||||
|
pC_->portName, axisNo_, __PRETTY_FUNCTION__, __LINE__);
|
||||||
|
setAxisParamChecked(this, motorStatusProblem, true);
|
||||||
|
setAxisParamChecked(this, motorMessageText,
|
||||||
|
"cannot operate in velocity mode");
|
||||||
|
return asynError;
|
||||||
|
}
|
||||||
|
|
||||||
getAxisParamChecked(this, motorEnableRBV, &enabled);
|
getAxisParamChecked(this, motorEnableRBV, &enabled);
|
||||||
getAxisParamChecked(this, motorRecResolution, &motorRecResolution);
|
getAxisParamChecked(this, motorRecResolution, &motorRecResolution);
|
||||||
|
|
||||||
@@ -822,7 +864,14 @@ asynStatus masterMacsAxis::doMoveVelocity(double minVelocity,
|
|||||||
|
|
||||||
// Start the move. We do not use the MovTimeout watchdog here, because the
|
// Start the move. We do not use the MovTimeout watchdog here, because the
|
||||||
// motor can move for any time in velocity mode.
|
// motor can move for any time in velocity mode.
|
||||||
return pC_->write(axisNo_, 00, "3", timeout);
|
status = pC_->write(axisNo_, 00, "3", timeout);
|
||||||
|
if (status != asynSuccess) {
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Cache the information that the current movement is in velocity mode
|
||||||
|
pMasterMacsA_->lastMoveCommand = velocityMode;
|
||||||
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
asynStatus masterMacsAxis::doMove(double position, int relative,
|
asynStatus masterMacsAxis::doMove(double position, int relative,
|
||||||
@@ -845,6 +894,18 @@ asynStatus masterMacsAxis::doMove(double position, int relative,
|
|||||||
|
|
||||||
// =========================================================================
|
// =========================================================================
|
||||||
|
|
||||||
|
// Can the motor be operated in position mode?
|
||||||
|
if (!pMasterMacsA_->canPositionMove) {
|
||||||
|
asynPrint(pC_->pasynUser(), ASYN_TRACE_ERROR,
|
||||||
|
"Controller \"%s\", axis %d => %s, line %d:\nAxis cannot "
|
||||||
|
"operate in position mode.\n",
|
||||||
|
pC_->portName, axisNo_, __PRETTY_FUNCTION__, __LINE__);
|
||||||
|
setAxisParamChecked(this, motorStatusProblem, true);
|
||||||
|
setAxisParamChecked(this, motorMessageText,
|
||||||
|
"cannot operate in position mode");
|
||||||
|
return asynError;
|
||||||
|
}
|
||||||
|
|
||||||
getAxisParamChecked(this, motorEnableRBV, &enabled);
|
getAxisParamChecked(this, motorEnableRBV, &enabled);
|
||||||
getAxisParamChecked(this, motorRecResolution, &motorRecResolution);
|
getAxisParamChecked(this, motorRecResolution, &motorRecResolution);
|
||||||
|
|
||||||
@@ -930,6 +991,8 @@ asynStatus masterMacsAxis::doMove(double position, int relative,
|
|||||||
return asynError;
|
return asynError;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Cache the information that the current movement is in position mode
|
||||||
|
pMasterMacsA_->lastMoveCommand = positionMode;
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1230,8 +1293,8 @@ asynStatus masterMacsAxis::readAxisStatus() {
|
|||||||
|
|
||||||
// =========================================================================
|
// =========================================================================
|
||||||
|
|
||||||
asynStatus rw_status = pC_->read(axisNo_, 10, response);
|
asynStatus rwStatus = pC_->read(axisNo_, 10, response);
|
||||||
if (rw_status == asynSuccess) {
|
if (rwStatus == asynSuccess) {
|
||||||
|
|
||||||
float axisStatus = 0;
|
float axisStatus = 0;
|
||||||
int nvals = sscanf(response, "%f", &axisStatus);
|
int nvals = sscanf(response, "%f", &axisStatus);
|
||||||
@@ -1243,7 +1306,7 @@ asynStatus masterMacsAxis::readAxisStatus() {
|
|||||||
pMasterMacsA_->axisStatus = toBitset(axisStatus);
|
pMasterMacsA_->axisStatus = toBitset(axisStatus);
|
||||||
}
|
}
|
||||||
|
|
||||||
return rw_status;
|
return rwStatus;
|
||||||
}
|
}
|
||||||
|
|
||||||
asynStatus masterMacsAxis::readAxisError() {
|
asynStatus masterMacsAxis::readAxisError() {
|
||||||
@@ -1251,8 +1314,8 @@ asynStatus masterMacsAxis::readAxisError() {
|
|||||||
|
|
||||||
// =========================================================================
|
// =========================================================================
|
||||||
|
|
||||||
asynStatus rw_status = pC_->read(axisNo_, 11, response);
|
asynStatus rwStatus = pC_->read(axisNo_, 11, response);
|
||||||
if (rw_status == asynSuccess) {
|
if (rwStatus == asynSuccess) {
|
||||||
|
|
||||||
float axisError = 0;
|
float axisError = 0;
|
||||||
int nvals = sscanf(response, "%f", &axisError);
|
int nvals = sscanf(response, "%f", &axisError);
|
||||||
@@ -1262,7 +1325,7 @@ asynStatus masterMacsAxis::readAxisError() {
|
|||||||
}
|
}
|
||||||
pMasterMacsA_->axisError = toBitset(axisError);
|
pMasterMacsA_->axisError = toBitset(axisError);
|
||||||
}
|
}
|
||||||
return rw_status;
|
return rwStatus;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool masterMacsAxis::readyToBeSwitchedOn() {
|
bool masterMacsAxis::readyToBeSwitchedOn() {
|
||||||
|
|||||||
@@ -52,17 +52,15 @@ class HIDDEN masterMacsAxis : public sinqAxis {
|
|||||||
asynStatus doPoll(bool *moving);
|
asynStatus doPoll(bool *moving);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Implementation of the `doMoveVelocity` function from sinqAxis. The
|
* @brief TODO
|
||||||
* parameters are described in the documentation of
|
|
||||||
* `sinqAxis::doMoveVelocity`.
|
|
||||||
*
|
*
|
||||||
* @param minVelocity
|
* @param minVelocity
|
||||||
* @param maxVelocity
|
* @param maxVelocity
|
||||||
* @param acceleration
|
* @param acceleration
|
||||||
* @return asynStatus
|
* @return asynStatus
|
||||||
*/
|
*/
|
||||||
asynStatus doMoveVelocity(double minVelocity, double maxVelocity,
|
asynStatus moveVelocity(double minVelocity, double maxVelocity,
|
||||||
double acceleration);
|
double acceleration);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Implementation of the `doMove` function from sinqAxis. The
|
* @brief Implementation of the `doMove` function from sinqAxis. The
|
||||||
|
|||||||
Reference in New Issue
Block a user