I'm writing my first USB driver and now have to deal with the vagueries of
transfers that are a multiple of the max transfer size and the need to send
zero-length delimiter transfers. I have implemented something and it appears
to work, but my major concerns are:

Did I do it right?
Will my driver work properly on a USB 2.0 bus?

Can anyone point me to a good source of infomation on this topic?

Thanks for reading,

Mike

Re: USB zero-length delimiter transfers by Doron

Doron
Thu Jan 13 01:24:46 CST 2005

if it is working for you now, it should work on usb 2.0 w/out issue. you
can always hook up a CATC and verify what is going on at the bus level.

d

--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.


"mdyoke" <mdyoke@discussions.microsoft.com> wrote in message
news:5D2AF278-8D58-43EE-8398-2FA0E9F89D8D@microsoft.com...
> I'm writing my first USB driver and now have to deal with the vagueries of
> transfers that are a multiple of the max transfer size and the need to
> send
> zero-length delimiter transfers. I have implemented something and it
> appears
> to work, but my major concerns are:
>
> Did I do it right?
> Will my driver work properly on a USB 2.0 bus?
>
> Can anyone point me to a good source of infomation on this topic?
>
> Thanks for reading,
>
> Mike