Annoyance of the moment
2008-10-24 14:24:26.369456+00 by Dan Lyke 1 comments
Annoyance of the moment: PyUSB reporting a read timeout with a usb.USBError("No error")
. The work-around is
try:
response = handle.bulkRead(0x81,50)
except usb.USBError, error:
if error.message != "No error":
print "Unexpected error:", error
raise error