Hi,
I'm using the CDC ACM USB feature and setting the device name with a KConfig parameter.
CONFIG_USB_DEVICE_PRODUCT="MyUsbDevice CDC ACM"
Hi,
I'm using the CDC ACM USB feature and setting the device name with a KConfig parameter.
CONFIG_USB_DEVICE_PRODUCT="MyUsbDevice CDC ACM"
Hi,
Windows will cache your device driver based on VID/PID:
https://stackoverflow.com/questions/41644081/windows-10-clean-out-usb-enumeration-driver-cruft
This means that you cannot dynamically update a USB descriptor on-the-fly without changing the VID/PID.
You should rather return the firmware version via USB data communication, if required.
Kind regards,
Håkon
Hi,
Windows will cache your device driver based on VID/PID:
https://stackoverflow.com/questions/41644081/windows-10-clean-out-usb-enumeration-driver-cruft
This means that you cannot dynamically update a USB descriptor on-the-fly without changing the VID/PID.
You should rather return the firmware version via USB data communication, if required.
Kind regards,
Håkon