Rename a USB HID device under Windows

血红的双手。 提交于 2019-12-12 02:58:48

问题


I wrote a firmware to a USB device that uses the generic HID class for communicating with the host PC.

When connecting the device to the PC, it shows the hard-coded string I put in the firmware, but after the driver installation is over (using the generic Windows driver), the device's name is changed to a generic "USB Input Device".

How can I rename the device back?


回答1:


You can't do that. The device manager shows the string that is registered at installation by the device driver - in your case it's the generic Windows driver (which obviously has no knowledge of your proprietary FW functionality beyond support of USB protocol). You need to write a driver on top of the Windows USB driver to give you the functionality you want.



来源:https://stackoverflow.com/questions/16767397/rename-a-usb-hid-device-under-windows

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!