Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* Std driver for windows 10 8 (#123)
* Change USB1 Device Descriptor
Device USB Subclass changed from 0 to 2 to have Windows 10 and 8 automatically use the standard usbser.sys USB driver
* Change USB2 device descriptor
Device USB Subclass changed from 0 to 2 to have Windows 10 and 8 automatically use the standard usbser.sys USB driver
https://docs.microsoft.com/en-us/windows-hardware/drivers/usbcon/usb-driver-installation-based-on-compatible-ids
  • Loading branch information
bvernoux committed Aug 26, 2020
1 parent 927d63c commit 550cc50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/common/usb1cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ static const uint8_t vcom_device_descriptor_data[18] = {
USB_DESC_DEVICE(
0x0110, /* bcdUSB (1.1). */
0x02, /* bDeviceClass (CDC). */
0x00, /* bDeviceSubClass. */
0x02, /* bDeviceSubClass. */
0x00, /* bDeviceProtocol. */
0x40, /* bMaxPacketSize. */
VENDOR_ID, /* idVendor. */
Expand Down
2 changes: 1 addition & 1 deletion src/common/usb2cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ static const uint8_t vcom_device_descriptor_data[18] = {
USB_DESC_DEVICE(
0x0110, /* bcdUSB (1.1). */
0x02, /* bDeviceClass (CDC). */
0x00, /* bDeviceSubClass. */
0x02, /* bDeviceSubClass. */
0x00, /* bDeviceProtocol. */
0x40, /* bMaxPacketSize. */
VENDOR_ID, /* idVendor. */
Expand Down

0 comments on commit 550cc50

Please sign in to comment.