Removed debug messages
This commit is contained in:
@ -507,10 +507,6 @@ asynStatus seleneLiftAxis::startCombinedMove() {
|
|||||||
if (status != asynSuccess) {
|
if (status != asynSuccess) {
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
errlogPrintf("Target lift: %lf, Target angle: %lf\n", liftTargetPosition,
|
|
||||||
angleTargetPosition);
|
|
||||||
|
|
||||||
auto targetPositions =
|
auto targetPositions =
|
||||||
positionsFromLiftAndAngle(liftTargetPosition, angleTargetPosition);
|
positionsFromLiftAndAngle(liftTargetPosition, angleTargetPosition);
|
||||||
|
|
||||||
@ -530,8 +526,6 @@ asynStatus seleneLiftAxis::startCombinedMove() {
|
|||||||
targetPositions[0], targetPositions[1], targetPositions[2],
|
targetPositions[0], targetPositions[1], targetPositions[2],
|
||||||
targetPositions[3], targetPositions[4], targetPositions[5]);
|
targetPositions[3], targetPositions[4], targetPositions[5]);
|
||||||
|
|
||||||
errlogPrintf("%s\n", command);
|
|
||||||
|
|
||||||
// No answer expected
|
// No answer expected
|
||||||
return pC_->writeRead(axisNo_, command, response, 0);
|
return pC_->writeRead(axisNo_, command, response, 0);
|
||||||
}
|
}
|
||||||
|
@ -213,6 +213,12 @@ asynStatus seleneOffsetAxis::doPoll(bool *moving) {
|
|||||||
|
|
||||||
// Update the parameter library
|
// Update the parameter library
|
||||||
if (error != 0) {
|
if (error != 0) {
|
||||||
|
status = setStringParam(pC_->motorMessageText(), userMessage);
|
||||||
|
if (status != asynSuccess) {
|
||||||
|
return pC_->paramLibAccessFailed(status, "motorMessageText",
|
||||||
|
axisNo_, __PRETTY_FUNCTION__,
|
||||||
|
__LINE__);
|
||||||
|
}
|
||||||
status = setIntegerParam(pC_->motorStatusProblem(), true);
|
status = setIntegerParam(pC_->motorStatusProblem(), true);
|
||||||
if (status != asynSuccess) {
|
if (status != asynSuccess) {
|
||||||
return pC_->paramLibAccessFailed(status, "motorStatusProblem_",
|
return pC_->paramLibAccessFailed(status, "motorStatusProblem_",
|
||||||
|
Reference in New Issue
Block a user