Bug fix in float64Array callbacks

This commit is contained in:
MarkRivers
2011-04-08 03:48:19 +00:00
parent 14027adde4
commit 717864037c
+2 -2
View File
@@ -303,7 +303,7 @@ asynStatus asynMotorAxis::readbackProfile()
profileReadbacks_[i] = profileReadbacks_[i] * resolution + offset;
profileFollowingErrors_[i] = profileFollowingErrors_[i] * resolution;
}
status = pC_->doCallbacksFloat64Array(profileReadbacks_, numReadbacks, axisNo_, pC_->profileReadbacks_);
status |= pC_->doCallbacksFloat64Array(profileFollowingErrors_, numReadbacks, axisNo_, pC_->profileFollowingErrors_);
status = pC_->doCallbacksFloat64Array(profileReadbacks_, numReadbacks, pC_->profileReadbacks_, axisNo_);
status |= pC_->doCallbacksFloat64Array(profileFollowingErrors_, numReadbacks, pC_->profileFollowingErrors_, axisNo_);
return asynSuccess;
}