PySigmaKoki 2.1.4__tar.gz → 2.1.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pysigmakoki-2.1.4 → pysigmakoki-2.1.6}/PKG-INFO +1 -1
- {pysigmakoki-2.1.4 → pysigmakoki-2.1.6}/PySigmaKoki.egg-info/PKG-INFO +1 -1
- {pysigmakoki-2.1.4 → pysigmakoki-2.1.6}/pyproject.toml +1 -1
- {pysigmakoki-2.1.4 → pysigmakoki-2.1.6}/sigma_koki.py +2 -2
- {pysigmakoki-2.1.4 → pysigmakoki-2.1.6}/PySigmaKoki.egg-info/SOURCES.txt +0 -0
- {pysigmakoki-2.1.4 → pysigmakoki-2.1.6}/PySigmaKoki.egg-info/dependency_links.txt +0 -0
- {pysigmakoki-2.1.4 → pysigmakoki-2.1.6}/PySigmaKoki.egg-info/requires.txt +0 -0
- {pysigmakoki-2.1.4 → pysigmakoki-2.1.6}/PySigmaKoki.egg-info/top_level.txt +0 -0
- {pysigmakoki-2.1.4 → pysigmakoki-2.1.6}/README.md +0 -0
- {pysigmakoki-2.1.4 → pysigmakoki-2.1.6}/setup.cfg +0 -0
@@ -230,13 +230,13 @@ class BaseStageController(object):
|
|
230
230
|
"""
|
231
231
|
Sleep up to timeout_in_sec until the ACK3 state becomes ready.
|
232
232
|
"""
|
233
|
-
|
233
|
+
for i in range(timeout_in_sec*10):
|
234
234
|
ack3 = self.getACK3()
|
235
235
|
if ack3 == 'R': # ready
|
236
236
|
break
|
237
237
|
elif ack3 == 'B': # busy
|
238
238
|
time.sleep(0.1)
|
239
|
-
|
239
|
+
else: # unknown state
|
240
240
|
time.sleep(0.1) # wait anyway
|
241
241
|
|
242
242
|
def getVersion(self):
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|