Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
25 views

Replace Windows USB Class Driver with a custom driver?

I wonder if anyone can help at all, a bit of a specialist problem this. I have an application that needs to read and analyse a number of USB devices (not simultaneously, they are each run in seperate ...
2
votes
2answers
2k views

Compiling an application that uses WinUsb

I am in the process of writing an application to communicate with Usb devices using WinUsb.dll. This is a user-mode library that allows communication with a device through winusb.sys installed as its ...
1
vote
2answers
6k views

How to install USB driver for any android device?

I am an android developer. I have a new HTC Inspire 4g phone but I don't know how to install usb driver for it. This is my android_winusb.inf file: ; ; Android WinUsb driver installation. ; [Version] ...
1
vote
1answer
165 views

How to implement multiple concurrent application access with WinUsb

We're porting our USB device dll's to use the generic WinUsb. However, WinUsb doesn't support multiple concurrent application accss to the same device (Same VID & PID). I wanted to know if there ...
1
vote
1answer
188 views

WinUSB failing on non-development computers

Good afternoon, WinUSB is working well on the development computer that I am using (Win XP SP3). I am able to download new firmware to the Cypress FX2, and then connect to the new USB device once it ...
1
vote
0answers
491 views

Canceling a WinUSB asynchronous control transfer

For a user application (not a driver) using WinUSB, I use WinUsb_ControlTransfer in combination with overlapped I/O to asynchronously send a control message. Is it possible to cancel the asynchronous ...
0
votes
0answers
26 views

Software based Android accessory on Windows

I would like to turn my computer into an Android accessory using my application. So instead of a specialized hardware this will be just PC that will switch the phone into accessory mode, thus ...
0
votes
0answers
70 views

Converting Working WinUSB driver/software to work on Win7

I have an application and WinUSB driver to custom hardware/firmware that presently works on Windows XP. I have begun the process of getting it also working on Windows 7 64-bit. I presently have the ...
0
votes
1answer
428 views

WinUSB driver installation failing on XP (works fine on Win7)

I'm having difficulty installing a WinUSB driver on Windows XP (x86, service pack 3). I've followed the Microsoft WinUSB guidelines to create a signed driver package using an inf file, signed cat file ...
0
votes
0answers
96 views

How to use API provided by my USB DIO 32 dll in python

I need to import my dll called aiousb.dll located in C:\WINDOWS\system32. I want to use the API functions provided in that dll by the manufacturer of the device. I've tried both win32api and ctypes. ...
0
votes
2answers
184 views

WinUSB driver for Arduino

I'm using an Arduino to read data from the web and display it. I can easily pass the data as serial using the supplied Drivers because they identify the Com port so I can send serial to the COM port. ...
0
votes
3answers
452 views

Transferring data to host via USB at high speed

I am talking to a custom made lab-device (little hardware thingy) through a USB-connection. How do I acquire data from the lab-device at maximum speed? The host is a Windows XP machine, running ...
0
votes
2answers
126 views

multiple architectures, winusb and wix

I am creating an installer for an application which includes a WinUSB device driver. I am using WiX 3.5 with the difx extension. According to the WinUSB how-to I can create a single inf file that will ...
0
votes
1answer
322 views

ERROR_SEM_TIMEOUT when using WinUSB WritePipe

I often get ERROR_SEM_TIMEOUT errors using the WinUSB WritePipe function. This would seem to indicate that there is a timeout, but if I wait a period of time and try again I'm never able to write. ...