Tagged Questions
0
votes
0answers
25 views
get data from USB using python
I am not understanding the USB protocol properly and so getting confused with my code to get data about the USB when i add it.
I cant figure out where i am going wrong.
My system is windows 8 64 bit.
...
0
votes
1answer
41 views
How to print list of connected devices
Please have a look at the following code, which is coded to get the list of USB devices connected
#include <lusb0_usb.h>
#include <iostream>
using namespace std;
int main()
{
...
2
votes
1answer
93 views
USB Programming with Qt
Is there anyway I can do USB programming in Qt? I am using Qt Creator 2.6 which is based on Qt version 5.0.0 and it is the latest Qt Creator which works with the Microsoft Visual Studio 2010 compiler.
...
0
votes
1answer
44 views
How to install LibUSB?
I am having hard time installing LibUSB. I went across some youtube videos and they were talking about "INSTALLING" the LibUSB. I went across another tutorial and they are saying we need to build it ...
1
vote
0answers
306 views
Bluegiga Bluetooth LED USB dongle firmware update tool not working correctly [closed]
So I was following step by step BlueGiga's BGDemo application note but ran into a problem when using the dfutool.exe to update my USB dongle's firmware. The steps I took are as follow:
1) Open ...
1
vote
0answers
228 views
libusb Windows using WinUSB BulkTransfer receiving inconsistant
I am attempting to communicate with a custom USB device through windows using libusbx. I have the WinUSB driver installed for the device and am able to get some communication to happen. It's just not ...
3
votes
2answers
326 views
LibUsbDotNet UsbDevice.ControlTransfer hangs
I have a C# .Net Winforms application, which uses LibUsbDotNet to program firmware into an USB-device (Atmel AVR32) using "DFU_DNLOAD" transfers, which is a special kind of control-transfers. This all ...
0
votes
0answers
49 views
Windows: Is it possible to set SSL connection using OpenSSL to communicate USB device via LibUSB?
I am trying to communicate with a device via USB using LibUSB. Until now I used libusb. I want to add SSL layer on top of usb bulk. I use OpenSSL for that matter.
In order to tell ssl_bio where to ...
0
votes
1answer
294 views
libUSB / WinUSB to WinDDK Driver Port
I want to port libUSB driver to the windows driver using WDK (In Kernel Mode).
I found that libUSB internally uses the winUSB ( From libUSB Sources).
This is what I do in the libusb,
I get the ...
2
votes
0answers
487 views
libnfc: SCL3711 “No NFC device found” on Windows 7
I am attempting to use libnfc to allow NFC operations on Windows 7. I am using the SCL3711. The device shows up when running testlibusb, so it would seem that LibUSB is functioning correctly. However, ...
1
vote
2answers
575 views
libusb-win32 - can't read from keyboard
I'm trying to write a custom 'driver' for a keyboard (HID, if it matters), under Windows 7. The final goal is having two keyboards connected to the computer, but mapping all of the keys of one of them ...
0
votes
1answer
274 views
libusb 1.0 on Windows: extremely poor libusb_get_device_list performance
It takes 40 ms on Core i7 (Win 7 x64). And even worse - it makes my GUI laggy. Does anyone faced the same problem? Any solutions to improve performance?
This is the latest libusb 1.0 release I'm ...
1
vote
1answer
909 views
libusb-win32: Automated installation of a driver filter
I've faced a problem getting my libusb-w32 based program to detect devices.
The program has to detect digital cameras, and I need to automatically install driver filter for any new camera to be ...
2
votes
1answer
2k views
Pyusb on Windows 7 cannot find any devices
So I installed Pyusb 1.0.0-alpha-1
Under Windows, I cannot get any handles to usb devices.
>>> import usb.core
>>> print usb.core.find()
None
I do have 1 usb device plugged ...
2
votes
3answers
1k views
Use libusb with Delphi on Windows 64-bit?
After reading a little, I am concerned that my 32-bit Delphi application will not be able to use libusb 64-bit driver on Windows 7 and other 64-bit Windows systems, and that it will not be able to ...
2
votes
1answer
2k views
Is there an alternative to libusb-win32 for 64bit windows?
I've been developing some software which uses the libusb-win32 library to interact with some USB hardware I've been developing. Now I'm trying to run the same software on windows 64 but the drivers ...
