Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Erik Strand
lufa
Commits
1e00627a
Unverified
Commit
1e00627a
authored
Jul 08, 2018
by
Dean Camera
Committed by
GitHub
Jul 08, 2018
Browse files
Merge pull request #132 from erikarvstedt/update-pyusb
Update Python USB host examples, to be compatible with PyUSB >= 1.0.0.
parents
106f0eee
5bf9d47b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Demos/Device/ClassDriver/GenericHID/HostTestApp/test_generic_hid_libusb.py
View file @
1e00627a
...
...
@@ -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
(http
s
://
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
):
...
...
Demos/Device/LowLevel/BulkVendor/HostTestApp/test_bulk_vendor.py
View file @
1e00627a
...
...
@@ -11,7 +11,7 @@
receive a continuous stream of packets to/from to the device, to show
bidirectional communications.
Requires
the pyUSB library
(http://
sourceforge.net/projects
/pyusb
/
).
Requires
PyUSB >= 1.0.0
(http
s
://
github.com/pyusb
/pyusb).
"""
import
sys
...
...
@@ -53,8 +53,8 @@ def main():
print
(
"Connected to device 0x%04X/0x%04X - %s [%s]"
%
(
vendor_device
.
idVendor
,
vendor_device
.
idProduct
,
usb
.
util
.
get_string
(
vendor_device
,
255
,
vendor_device
.
iProduct
),
usb
.
util
.
get_string
(
vendor_device
,
255
,
vendor_device
.
iManufacturer
)))
usb
.
util
.
get_string
(
vendor_device
,
vendor_device
.
iProduct
),
usb
.
util
.
get_string
(
vendor_device
,
vendor_device
.
iManufacturer
)))
x
=
0
while
1
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment