aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/ClassDriver
diff options
context:
space:
mode:
authorErik Arvstedt <erik.arvstedt@gmail.com>2018-07-06 18:43:02 +0200
committerErik Arvstedt <erik.arvstedt@gmail.com>2018-07-07 18:04:36 +0200
commit5bf9d47b032651cafaf6d26784c99a569411f455 (patch)
treea63a0f502c34e6cfbbf513954a3756ae67246e4d /Demos/Device/ClassDriver
parent106f0eee17bbe837c9f94bdcf13d28e2952f1aef (diff)
downloadlufa-5bf9d47b032651cafaf6d26784c99a569411f455.tar.gz
lufa-5bf9d47b032651cafaf6d26784c99a569411f455.tar.bz2
lufa-5bf9d47b032651cafaf6d26784c99a569411f455.zip
Upgrade to PyUSB >= 1.0.0
All major package managers provide PyUSB versions >= 1.0.0 by default. LUFA used an older, incompatible version, which lead to broken BulkVendor and GenericHID demo applications for new users. Also, update the PyUSB homepage URL as the old one is unreachable.
Diffstat (limited to 'Demos/Device/ClassDriver')
-rwxr-xr-xDemos/Device/ClassDriver/GenericHID/HostTestApp/test_generic_hid_libusb.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Demos/Device/ClassDriver/GenericHID/HostTestApp/test_generic_hid_libusb.py b/Demos/Device/ClassDriver/GenericHID/HostTestApp/test_generic_hid_libusb.py
index 8da8ad767..de700147e 100755
--- a/Demos/Device/ClassDriver/GenericHID/HostTestApp/test_generic_hid_libusb.py
+++ b/Demos/Device/ClassDriver/GenericHID/HostTestApp/test_generic_hid_libusb.py
@@ -14,7 +14,7 @@
pattern on the target board. Send and received report data is printed to
the terminal.
- Requires the PyUSB library (http://sourceforge.net/apps/trac/pyusb/).
+ Requires PyUSB >= 1.0.0 (https://github.com/pyusb/pyusb).
"""
import sys
@@ -71,8 +71,8 @@ def main():
print("Connected to device 0x%04X/0x%04X - %s [%s]" %
(hid_device.idVendor, hid_device.idProduct,
- usb.util.get_string(hid_device, 256, hid_device.iProduct),
- usb.util.get_string(hid_device, 256, hid_device.iManufacturer)))
+ usb.util.get_string(hid_device, hid_device.iProduct),
+ usb.util.get_string(hid_device, hid_device.iManufacturer)))
p = 0
while (True):