X-Git-Url: https://sigrok.org/gitweb/?p=libsigrok.git;a=blobdiff_plain;f=README.devices;h=9572678673b57a89140daa0f710b49152eab493b;hp=226ec06ba59691b2c37a3548987d963d79ae3080;hb=118da66f8d8ab1ce2a60f429654f533df7f9ee08;hpb=c5dd6c4f0a5af1fc3bf0bf2f8b473af3f2f3c33f diff --git a/README.devices b/README.devices index 226ec06b..95726786 100644 --- a/README.devices +++ b/README.devices @@ -63,6 +63,10 @@ The following drivers/devices require a firmware upload upon connection: These can be extracted from the vendor's Windows drivers using a tool from our 'sigrok-util' repository/project. + - kingst-la2016: The Kingst LA series of logic analyzers needs MCU firmware + and FPGA netlists. The 'sigrok-util' repository contains a script to + extract these files from the vendor software. + - lecroy-logicstudio: The LeCroy LogicStudio requires FPGA bitstream files. These can be extracted from the vendor's Windows software using a tool from our 'sigrok-util' repository/project. @@ -288,6 +292,19 @@ rules shipped by the system will be broken. Please consult the udev docs for details. +Assigning drivers to devices (Windows, Zadig) +--------------------------------------------- + +On Windows systems it may be necessary to assign drivers to devices +before libusb based applications can access them. It may be necessary +to re-run this driver assignment after firmware upload in case the +device changes its USB identification as a consequence of loading the +firmware image. + +The https://sigrok.org/wiki/Windows wiki page discusses this subject, +and other platform specific aspects. + + Non-default drivers for commodity chips --------------------------------------- @@ -347,19 +364,27 @@ Examples (sigrok-cli): $ sigrok-cli --driver uni-t-ut61e-ser:conn=/dev/ttyUSB0 ... $ sigrok-cli --driver voltcraft-vc820-ser:conn=/dev/ttyS0 ... - -When using any of the UT-D04 USB/HID cables you have to use the respective -driver _without_ the '-ser' drivername suffix (internally all of these models -are handled by the 'uni-t-dmm' driver). - -You also need to specify the USB vendor/device IDs of the cable. -Autodetection is not possible here, since various other products use the -USB VID/PID of those cables too, and there is no way to distinguish them. - -Since the UT-D04 cables are USB based (but don't use a USB-to-serial chip) -there is no need to specify a serial port via 'conn', of course. -However, the user running the frontend does also need to have permissions -to access the respective USB device (see above). + $ sigrok-cli --driver uni-t-ut61e-ser:conn=hid/cp2110 + +Using any of the UT-D04 et al USB/HID cables can be done in two different +ways: Use transparent serial over HID support in libsigrok, by giving the +-ser driver a conn=hid/... serial port spec. This re-uses the 'serial-dmm' +driver, results in better coverage of these code paths, and reduces +maintenance overhead. Or by running non-ser drivers and passing USB +specific connection details. When the driver _without_ the '-ser' suffix +is used, the models are handled by the 'uni-t-dmm' driver. These duplicate +drivers only exist for historical reasons, the redundancy may result in +differences of behaviour between the two implementations. When in doubt, +check if the '-ser' driver works for you. + +In the USB specific driver case you need to specify the cable's vendor +and product IDs. Autodetection is not possible here, since various other +products use the USB VID/PID of those cables too, and there is no way to +distinguish them. The sigrok software errs on the safe side, and won't +communicate to serial ports unless explicitly instructed by the user. + +The user running the frontend does also need to have permissions to +access the respective USB device (see above). Examples (sigrok-cli): @@ -390,6 +415,18 @@ See also: http://erste.de/UT61/index.html done +UNI-T UT-D04 cable issue on Windows +----------------------------------- + +There have been reports that CH9325 based cables are not detected on +Windows out of the box when they are assigned to libwdi drivers. Though +they may be usable in that case when the USB address is manually specified. +This can happen when some "USB to serial" driver is assigned which does not +provide a genuine COM port that enumerates naturally. Manually assigning a +"USB input device" driver can improve HIDAPI compatibility and make the +cable show up in sigrok's serial port enumeration. + + Enabling multimeter / data logger measurement output ----------------------------------------------------