如何模拟USB驱动器
是否可以只用软件来模拟USB驱动器?例如,我的意思是,向操作系统公开本地内存空间,以便设备管理器将其识别为 USB 设备。 我不熟悉硬件实现,但我确信可以以某种方式模拟 USB 协议。
我从这本书开始 - USB 设计实例。
任何人都可以给我额外的参考资料吗?
预先感谢!
Is it possible to simulate a USB drive with software only? I mean, for example, to expose a local memory space to the OS so the device manager will recognize it as a USB device.
I'm not familiar with hardware implementation, but I'm sure that it is possible somehow to emulate the USB protocol.
I began with this book - USB Design By Example.
Can anyone please give me additional references to begin with?
Thank in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要创建一组可以完成这项工作的内核模式驱动程序(块设备驱动程序和一些补充代码)。或者,您可以查看我们的虚拟存储产品,它可以让您创建虚拟磁盘并将其公开给系统。
You need to create a set of kernel-mode drivers that will do the job (block device driver and some supplementary code). Alternatively you can check our virtual storage products that let you create a virtual disk and expose it to the system.