Re: [linux-usb-devel] Drivers for d-link DWL-120 ?

2001-05-04 Thread bvermeul
> > Has anyone had any experiences with this bit of kit ? If so could you relate > > them. I'm considering buying one, but before I burn £120 I'd quite like to > > know what my chances are of getting it working under Linux :-) > It doesn't work with Linux yet. I have sent my NDA to Atmel (who m

[linux-usb-devel] How to submit a Vendor Command to a USB device

2001-05-08 Thread bvermeul
Hi all, I'm working on writing a driver for the D-Link DWL-120. I've got a driver that can recognize the device, claim it, and release it. I'd like to know how to construct an URB with the following parameters: Function Type: Vendor Interface Flags: IN and SHORT Reserved bits: 0xC1 Re

Re: [linux-usb-devel] Unknown descriptor type with Atmel AT76c503a

2001-05-11 Thread bvermeul
On Fri, 11 May 2001, Greg KH wrote: > On Sat, May 12, 2001 at 08:18:51AM +1000, Brad Hards wrote: > > "..tom" wrote: > > > Ran across one of these a while ago. Had me stumped, also, but it's not that > > > hard: DFU (device firmware upgrade - > > > http://www.usb.org/developers/data/devclass/usbd

Re: [linux-usb-devel] Unknown descriptor type with Atmel AT76c503a

2001-05-11 Thread bvermeul
On Sun, 13 May 2001, Brad Hards wrote: > [EMAIL PROTECTED] wrote: > > > > On Fri, 11 May 2001, Greg KH wrote: > > > > > Finally! A device that uses DFU in the wild! About time... :) > Don't get carried away just yet. It might be some vendor variation on the > spec. I have to check the vendor d

Re: [linux-usb-devel] usb 802.11 linux driver for a network interfacecard

2001-05-14 Thread bvermeul
On Mon, 14 May 2001, Ron Jarrell wrote: > I am looking for a Linux driver for a usb 802.11(wireless) network > interface card, i.e linksys, d-link, smc. Does anyone know of one that > may already exist or would anyone be intertested in writing one? I'm working on writing one for the D-Link DWL-

[linux-usb-devel] Pointers writing a usermode program for DFU

2001-06-26 Thread bvermeul
Hi, I've got a device I'd like to upload some firmware to. The device uses the DFU spec (which I've got, semi-understand, and am willing to implement). I'd like to write a program that uploads firmware to a DFU compatible device. Does anyone have any suggested reading, sample code, etc, that migh

Re: [linux-usb-devel] Pointers writing a usermode program for DFU

2001-06-26 Thread bvermeul
On Tue, 26 Jun 2001, David Brownell wrote: > > might help me move on quicker? I know it should be doable with libusb, but > > don't know where to find documentation of that particular piece of > > software... :) > > If you're literate in Java, http://jusb.sourceforge.net has documentation > which

[linux-usb-devel] Timeouts sending 1024 byte control messages in userspace

2001-06-28 Thread bvermeul
I've written a small program to download firmware to a device (according to the USB DFU specs). This generates several timeouts on the control pipe, which kinda kills the firmware upgrade. I've tried several packet sizes (100, 500, 512, 1024, the interface descriptor says 1024 byte max), with the

[linux-usb-devel] Patch for usbutils to correctly parse DFU descriptor

2001-06-28 Thread bvermeul
Hi, Included herein is a patch to lsusb to correctly parse the DFU descriptor. Everything according to the USB DFU spec. It may need some work with regards to the formatting, but apart from that it should suffice. It's against the latest usbutils I know of, and works for me... Regards, Bas Verm

Re: [linux-usb-devel] Timeouts sending 1024 byte control messagesin userspace

2001-06-28 Thread bvermeul
> On Thu, Jun 28, 2001 at 08:11:38PM +0200, [EMAIL PROTECTED] wrote: > > I've written a small program to download firmware to a device (according > > to the USB DFU specs). > > I don't think this has anything to do with your problem, but shouldn't > the firmware file to be downloaded contain the D

Re: [linux-usb-devel] Timeouts sending 1024 byte control messagesin userspace

2001-07-06 Thread bvermeul
On Sat, 7 Jul 2001, Brad Hards wrote: > [EMAIL PROTECTED] wrote: > > > > I've written a small program to download firmware to a device (according > > to the USB DFU specs). This generates several timeouts on the control > > pipe, which kinda kills the firmware upgrade. I've tried several packet >

Re: [linux-usb-devel] Timeouts sending 1024 byte control messagesin userspace

2001-07-06 Thread bvermeul
On Sat, 7 Jul 2001, Brad Hards wrote: > > I had the timeout for the Download stuff at 5. It just didn't work. > > I just tried your version, and that doesn't work either. What controller > > are you using? Mine is a i815 with usb-uhci on 2.4.6. Should I be trying > > this on 2.4.6-ac1? > I

[linux-usb-devel] How to fix usb_control_msg?

2001-07-06 Thread bvermeul
Hiya all, How do I fix usb_control_msg? In the comments it says that if timeout is 0, usb_control_msg will wait forever to complete. If I read the code, it looks like a timeout of 0 will return immediately. In my book, this is wrong. Either fix the comment, or fix the code. It's very confusing i