Skip to content
Snippets Groups Projects
Commit 3f6668d4 authored by kpetersn's avatar kpetersn
Browse files

Lowered moving in priority below updating dmov, updating readbacks, and...

Lowered moving in priority below updating dmov, updating readbacks, and syncing targets.  May need to move dmov to the lowest level.  This change hasn't been tested yet.

git-svn-id: https://subversion.xray.aps.anl.gov/kmp/transform/trunk@397 f095f811-4e88-6c84-d33e-e382bdb4531c
parent 5a472d88
No related branches found
No related tags found
No related merge requests found
......@@ -343,9 +343,6 @@ class transform:
if self.stopMotorsFlag == True:
#!print "idle: stop motors"
self.stopMotors()
if self.moveSoftMotorFlag == True:
#!print "idle: move motors"
self.moveMotors()
if self.dmovChangeFlag == True:
#!print "idle: update dmov"
self.updateDmov()
......@@ -355,6 +352,9 @@ class transform:
if self.syncSoftTargetFlag == True:
#!print "idle: sync soft targets"
self.syncSoftTargets()
if self.moveSoftMotorFlag == True:
#!print "idle: move motors"
self.moveMotors()
else:
pass
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment