Re: [linux-usb-devel] USB Interrupt Example

2004-06-17 Thread David Brownell
J. Dosher wrote: Is there a good example module for writing USB interrupt-based drivers, or a particular driver that's good to examine? I don't think so. The basic idea (in 2.6 anyway) is that you can have a queue of such periodic transfers, and the host performs them in sequence. On 2.4 there we

Re: [linux-usb-devel] USB Interrupt Example

2004-06-17 Thread Lonnie Mendez
You can have a look at an interrupt based usbserial driver I'm currently working on. It is by far nothing special... might give you something to work with though. http://geocities.com/i0xox0i cvs archive contains the 2.4/2.6 driver --- Thi

[linux-usb-devel] USB Interrupt Example

2004-06-17 Thread J. Dosher
Is there a good example module for writing USB interrupt-based drivers, or a particular driver that's good to examine? I've been able to get my interrupt driver working for a usb 2.0 device (Cypress CY68001), but only at a 2ms frame rate or slower. Thinking (and reading) that the 2.4.x kernel's eh