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