forked from M-Labs/artiq
1
0
Fork 0

lda: filter reports when waiting for command response

This commit is contained in:
Yann Sionneau 2014-11-28 17:36:26 +01:00 committed by Sebastien Bourdeauducq
parent 075e540032
commit 81ab801fe4
1 changed files with 7 additions and 7 deletions

View File

@ -175,8 +175,6 @@ class Lda:
self.write(command, len(data), data)
def get(self, command, length, timeout=1000):
# FIXME: this can collide with the status reports that the
# device sends out by itself
"""Sends a GET command to read back some value of the Lab Brick device.
:param int command: Command ID, most significant bit must be cleared.
@ -187,13 +185,15 @@ class Lda:
"""
assert not command & 0x80
status = None
self.write(command, length)
buf = ctypes.create_string_buffer(8)
res = self._check_error(hidapi.hid_read_timeout(self._dev,
buf, len(buf), timeout))
assert res == len(buf), res
command, length, data = struct.unpack("BB6s", buf.raw)
data = data[:length]
while status != command:
res = self._check_error(hidapi.hid_read_timeout(self._dev,
buf, len(buf), timeout))
assert res == len(buf), res
status, length, data = struct.unpack("BB6s", buf.raw)
data = data[:length]
logger.info("%s %s %r", command, length, data)
return data