Open axelatsec opened 4 months ago
When running ballisticgel.py in rng mode the return statement of the read function is this:
return self.usb.usbdev().read(self.usb.rep, size, timeout=self.usb._timeout)
and self.usb.usbdev() is not supposed to be called according to the function then printing "Do not call me". The code then stops functioning and doesn't complete the memory read.
self.usb.usbdev()
Thanks for bringing this up. I'll get that fixed up.
When running ballisticgel.py in rng mode the return statement of the read function is this:
return self.usb.usbdev().read(self.usb.rep, size, timeout=self.usb._timeout)
and
self.usb.usbdev()
is not supposed to be called according to the function then printing "Do not call me". The code then stops functioning and doesn't complete the memory read.