1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
FAQ
===
How do I fix "No backend available" errors?
-------------------------------------------
Generally, there are four possible causes for this problem:
1. You didn't install libusb library.
2. Your libusb library isn't in the standard shared library paths.
3. Your libusb version is too old.
4. Your PyUSB version is too old.
To debug what's wrong, run the following script in your environment::
import os
os.environ['PYUSB_DEBUG'] = 'debug'
import usb.core
usb.core.find()
This will print debug messages to the console. If you still have problems
to figure out what's going on, please ask for help in the mailing list,
providing the debug output.
How do I install libusb on Windows?
-----------------------------------
To install either libusb_ or libusb-win32_ on Windows, please use zadig_.
.. _zadig: http://zadig.akeo.ie/
.. _libusb: https://libusb.info
.. _libusb-win32: https://sourceforge.net/p/libusb-win32
How do I enforce a backend?
---------------------------
Here is an example for the *libusb1* backend::
>>> import usb.core
>>> from usb.backend import libusb1
>>> be = libusb1.get_backend()
>>> dev = usb.core.find(backend=be)
How can I pass the libusb library path to the backend?
------------------------------------------------------
Check the *Specify libraries by hand* section in the tutorial_.
.. _tutorial: https://github.com/pyusb/pyusb/blob/master/docs/tutorial.rst
How (not) to call set_configuration() on a device already configured with the selected configuration?
-----------------------------------------------------------------------------------------------------
Typically ``set_configuration()`` is called during device initialization. The `libusb documentation`_ on ``libusb_set_configuration()`` states:
.. _libusb documentation: http://libusb.sourceforge.net/api-1.0/group__libusb__dev.html#ga785ddea63a2b9bcb879a614ca4867bed
If you call this function on a device already configured with the selected configuration, then this function will act as a lightweight device reset: it will issue a SET_CONFIGURATION request using the current configuration, causing most USB-related device state to be reset (altsetting reset to zero, endpoint halts cleared, toggles reset).
Calling ``write()`` subsequently will therefore result in a timeout error.
One solution to this behaviour is to consider the currently active configuration, as described in the `configuration selection and handling`_. "If the configuration we want is already active, then we don't have to select any configuration"::
try:
cfg = dev.get_active_configuration()
except usb.core.USBError:
cfg = None
if cfg is None or cfg.bConfigurationValue != cfg_desired:
dev.set_configuration(cfg_desired)
.. _configuration selection and handling: http://libusb.sourceforge.net/api-1.0/libusb_caveats.html#configsel
|