Windows 驱动程序创建
我想尝试为我的触控板创建自定义驱动程序。您能推荐一个开源驱动程序吗?我的搜索没有结果,所以我希望实际上有任何框架代码可以开始构建。
I would like to try creating a custom driver for a trackpad of mine. Could you please recommend an opensource driver to start with? My search turned out nothing, so I hope there actually any skeleton code to begin building from.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它是 USB HID 设备吗?如果是这样,那么从设备读取数据应该很容易。
例如,请查看此代码 (C#)。
还有 UMDF(用户模式驱动程序框架) 据称允许编写用户模式下类 USB 设备的驱动程序。但我从未使用过它。有几个示例驱动程序可供下载。
Is it a USB HID device? If so, it should be pretty easy to read data from the device.
Check out this code (C#) for example.
There is also the UMDF (User Mode Driver Framework) that supposedly allows writing drivers for USB-like devices in user mode. I have never used it though. There are a couple of sample drivers to download.