From b1799bf45d89b38cdafcd23de8e2171d5ebfcfe8 Mon Sep 17 00:00:00 2001 From: Jonathan Bell Date: Fri, 11 Nov 2022 16:08:37 +0000 Subject: [PATCH] usb: start using bcdDevice as a version number --- src/usb_descriptors.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/usb_descriptors.c b/src/usb_descriptors.c index 29b8bd5e5..07510373a 100644 --- a/src/usb_descriptors.c +++ b/src/usb_descriptors.c @@ -52,7 +52,7 @@ tusb_desc_device_t const desc_device = #else .idProduct = 0x000c, // CMSIS-DAP adapter #endif - .bcdDevice = 0x0100, // Version 01.00 + .bcdDevice = 0x0101, // Version 01.01 .iManufacturer = 0x01, .iProduct = 0x02, .iSerialNumber = 0x03,