Sfoglia il codice sorgente

Bump version number to 1.2.0-dev.1

Clara Hobbs 6 anni fa
parent
commit
4ea9f4e2a8
2 ha cambiato i file con 4 aggiunte e 3 eliminazioni
  1. 1
    1
      docs/console_config.md
  2. 3
    2
      src/usbcfg.c

+ 1
- 1
docs/console_config.md Vedi File

@@ -1,6 +1,6 @@
1 1
 # PD Buddy Sink Serial Console Configuration Interface
2 2
 
3
-Version 1.2.0-dev, 2017-12-20
3
+Version 1.2.0-dev.1, 2018-01-01
4 4
 
5 5
 The PD Buddy Sink can be put into setup mode by holding the Setup button while
6 6
 plugging it into a computer.  In this mode, the device runs a configuration

+ 3
- 2
src/usbcfg.c Vedi File

@@ -199,9 +199,10 @@ static const uint8_t vcom_string2[] = {
199 199
  * Serial Number string.
200 200
  */
201 201
 static const uint8_t vcom_string3[] = {
202
-    USB_DESC_BYTE(20),                    /* bLength.                         */
202
+    USB_DESC_BYTE(24),                    /* bLength.                         */
203 203
     USB_DESC_BYTE(USB_DESCRIPTOR_STRING), /* bDescriptorType.                 */
204
-    '1', 0, '.', 0, '2', 0, '.', 0, '0', 0, '-', 0, 'd', 0, 'e', 0, 'v', 0
204
+    '1', 0, '.', 0, '2', 0, '.', 0, '0', 0, '-', 0, 'd', 0, 'e', 0, 'v', 0,
205
+    '.', 0, '1', 0
205 206
 };
206 207
 
207 208
 /*

Loading…
Annulla
Salva