Exemple #1
0
 def resetDevice(self):
     """
     Reinitialise current device.
     Attempts to restore current configuration & alt settings.
     If this fails, will result in a device diconnect & reconnect, so you
     have to close current device and rediscover it (notified by a
     LIBUSB_ERROR_NOT_FOUND error code).
     """
     result = libusb1.libusb_reset_device(self.__handle)
     if result:
         raise libusb1.USBError(result)
Exemple #2
0
 def resetDevice(self):
     result = libusb1.libusb_reset_device(self.handle)
     if result:
         raise libusb1.USBError, result