Author Topic: USBSer.sys  (Read 9692 times)

sudheerg_

  • Member
  • ***
  • Posts: 18
USBSer.sys
« on: January 03, 2011, 12:56:13 am »
Hi,

My intention is that when we connect our USB Device to the Host PC it shall appear as a COM Port on Host PC.

Does this can be achieved using usbser.sys driver available on Host PC?

What VID and PID I shall use on USB Device side and what is the class driver that I have to implement on Device Side?

Thank You & Regards,
GSR

Jan Axelson

  • Administrator
  • Frequent Contributor
  • *****
  • Posts: 3033
    • Lakeview Research
Re: USBSer.sys
« Reply #1 on: January 03, 2011, 11:24:34 am »
usbser.sys is for devices that use the USB Communications class, abstract control model. You provide your own VID and PID and an INF file for the PC, assuming Windows.

Another way to do it is to use a chip such as FTDI's USB UART, which uses FTDI's driver and can use the chip's embedded VID and PID.

I have more info here:

http://www.lvr.com/serport.htm#usb_virtual_com_ports

Info about Vendor IDs:

http://www.lvr.com/development_tools.htm#vendor_id

Jan

sudheerg_

  • Member
  • ***
  • Posts: 18
Re: USBSer.sys
« Reply #2 on: January 04, 2011, 03:52:11 am »
Hi Jan Axelson,

Thank You for replying.

Regards,
GSR