How do I build a virtual USB simulator? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T09:45:29Z http://stackoverflow.com/feeds/question/1660023 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1660023/how-do-i-build-a-virtual-usb-simulator 3 How do I build a virtual USB simulator? jacob http://stackoverflow.com/users/200810 2009-11-02T08:27:23Z 2009-11-04T11:39:16Z <p>We are looking for a virtual USB link simulator; this program or service should link a virtual <a href="http://en.wikipedia.org/wiki/COM%5F%28hardware%5Finterface%29" rel="nofollow">COM port</a> to an application which accepts only USB as data link.</p> <p>The <a href="http://en.wikipedia.org/wiki/COM%5Fport%5Fredirector#Virtual%5FSerial%5FPort" rel="nofollow">virtual COM port</a> is <a href="http://www.eterlogic.com/Products.VSPE.html" rel="nofollow">VSPE</a> from <a href="http://www.eterlogic.com/" rel="nofollow">Eterlogic</a>.</p> <p>The purpose is to make a serial data link between this virtual port and an application that expects data from a USB stick. Instead of the stick (recognized as HID) the program should get serial data from the virtual COM port (<a href="http://en.wikipedia.org/wiki/RS-232" rel="nofollow">RS-232</a>) presented as a virtual USB connection.</p> http://stackoverflow.com/questions/1660023/how-do-i-build-a-virtual-usb-simulator/1673263#1673263 0 Answer by Murkin for How do I build a virtual USB simulator? Murkin http://stackoverflow.com/users/192008 2009-11-04T11:39:16Z 2009-11-04T11:39:16Z <p>What do you mean "Accepts only USB as data link" ?</p> <p>HID is a standard Device Class. It contains some standardized "Usage tables" (e.g. Mouse, Keyboard, Monitor control).</p> <p>Most Operating Systems know how to handle HID and a number of Usage table. Connecting such a device will result with the OS exporting an appropriate device (Keyboard).</p> <p>Since you can register with HID in user-space in Windows (for a new Class Driver implementation, one needs to create a full driver). Many manufacturers are "riding" HID's back to create custom protocols on top of it.</p> <ol> <li><p>Does your application interact with a HID device that exports one of the standard usage tables ? (<a href="http://www.usb.org/developers/hidpage/" rel="nofollow">http://www.usb.org/developers/hidpage/</a>) </p></li> <li><p>Does your application register on top of HID and parse the reports itself ?</p></li> <li><p>Does your application connect to 3d party driver already installed on your OS ?</p></li> <li><p>Not enough space to post this in comments</p></li> </ol>