Tech Support > Microsoft Windows > Drivers > Can I communicate with USB prot in C#
Can I communicate with USB prot in C#
Posted by TianBing on April 26th, 2004


I want to make some code that send some datas to PC by the USB prot, I just want read and write raw datas through USB port, Can I make this in C# , and I do not want to write some driver , is that possible?

Posted by Robert Marquardt on April 26th, 2004


TianBing wrote:
You do not understand USB at all.
USB is a serial bus not a serial line. The bus and its protocol is
invisible to any application. You can only talk to a device.
Building an USB device is nontrivial. You need to learn to program an
USB enabled microcontroller. If your device does not fit one of the
predefined classes with a standard driver then you also need to write a
Windows driver.



Similar Posts