Re: usb speed under windows CE 6.0
- From: "silver" <moc.liamtoh@gnirrevliseht>
- Date: Wed, 14 Jan 2009 12:48:29 -0800
"only_lonely" <onlylonely@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message news:7327624F-BF0A-4154-AF09-9E6DE7C34E72@xxxxxxxxxxxxxxxx
How do we check the usb speed under windows CE 6.0?
i want to verify if the usb port can perform at 2.0 and 1.1 high and full
speed.
i got a usb port which design for 2.0 , and also work at 1.1 speed,stated at
the spec.
Read the USB device descriptor and look at the bcdUSB field. You can do this when a device is attached.
e.g.
LPCUSB_DEVICE lpUsbDev = (lpUsbFuncs->lpGetDeviceInfo)( hUSB );
if (!lpUsbDev)
{
goto broken;
}
lpUsbDev->Descriptor.bcdDevice contains the USB version supported for the device.
Geoff
--
.
- Follow-Ups:
- Re: usb speed under windows CE 6.0
- From: only_lonely
- Re: usb speed under windows CE 6.0
- References:
- usb speed under windows CE 6.0
- From: only_lonely
- usb speed under windows CE 6.0
- Prev by Date: Re: usb 2.0 drivers
- Next by Date: Re: usb speed under windows CE 6.0
- Previous by thread: usb speed under windows CE 6.0
- Next by thread: Re: usb speed under windows CE 6.0
- Index(es):
Relevant Pages
|