从头开始制作 USB 设备...VCP 驱动程序的优点是什么?
我正在构建一个具有 USB 接口的东西,我非常热衷于用于此目的的 FT232RL。制造商为 Linux 和 Windows 提供虚拟 com 端口驱动程序。我以前从未真正做过此类事情,所以我想知道是否有人可以告诉我为什么人们可能想要使用 VCP 驱动程序,或者为我指出有关该主题的一些资源的方向。我假设这只是为了简化编写驱动程序的过程,但我现在真的不确定。
I'm building a thingy that will have a usb interface, I'm pretty keen on the FT232RL for this purpose. The manufacturers offer virtual com port drivers for linux and windows. I haven't really done this sort of thing before so I was wondering if anybody can tell me why one might want to use a VCP driver or point me in the direction of some resources on the topic. I'm assuming it's just for the sake of simplifying the process of writing a driver but i'm really not certain right now.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,VCP 代表“虚拟 COM 端口”。如果您使用 FTDI 的驱动程序,当您插入设备时,它们将在您的计算机上创建一个虚拟 COM 端口。几乎每种语言都有一个用于在 COM 端口上发送和接收字节的库(例如 System.IO.Ports.SerialPort),这样您的设备就可以使用所有这些语言。您不必编写驱动程序。
In this case, VCP stands for "Virtual COM Port". If you use the drivers from FTDI, they will create a virtual COM port on your computer when you plug in the device. Nearly every language has a library for sending and receiving bytes on COM ports (e.g. System.IO.Ports.SerialPort), so your device will be usable from all of those languages. You will not have to write a driver.