mirror of
https://github.com/Qyriad/fusee-launcher.git
synced 2024-11-22 10:39:17 +01:00
clean up dependencies for broader compatibility
This commit is contained in:
parent
62ff4dba45
commit
533343c671
@ -29,8 +29,6 @@
|
|||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import usb
|
|
||||||
import time
|
|
||||||
import errno
|
import errno
|
||||||
import ctypes
|
import ctypes
|
||||||
import argparse
|
import argparse
|
||||||
@ -131,6 +129,9 @@ class HaxBackend:
|
|||||||
|
|
||||||
def find_device(self, vid=None, pid=None):
|
def find_device(self, vid=None, pid=None):
|
||||||
""" Set and return the device to be used """
|
""" Set and return the device to be used """
|
||||||
|
|
||||||
|
import usb
|
||||||
|
|
||||||
self.dev = usb.core.find(idVendor=vid, idProduct=pid)
|
self.dev = usb.core.find(idVendor=vid, idProduct=pid)
|
||||||
return self.dev
|
return self.dev
|
||||||
|
|
||||||
@ -599,7 +600,7 @@ except IOError as e:
|
|||||||
try:
|
try:
|
||||||
device_id = switch.read_device_id()
|
device_id = switch.read_device_id()
|
||||||
print("Found a Tegra with Device ID: {}".format(device_id))
|
print("Found a Tegra with Device ID: {}".format(device_id))
|
||||||
except usb.core.USBError as e:
|
except OSError as e:
|
||||||
# Raise the exception only if we're not being permissive about ID reads.
|
# Raise the exception only if we're not being permissive about ID reads.
|
||||||
if not arguments.permissive_id:
|
if not arguments.permissive_id:
|
||||||
raise e
|
raise e
|
||||||
|
Loading…
Reference in New Issue
Block a user