Browse Source

Update version number to 1.1.0

The API for the new features is stable, and the implementation seems
complete and bug-free.  I can't see any reason not to release, so here
we go!
Clara Hobbs 6 years ago
parent
commit
fa65664d16
2 changed files with 3 additions and 3 deletions
  1. 1
    1
      docs/console_config.md
  2. 2
    2
      src/usbcfg.c

+ 1
- 1
docs/console_config.md View File

1
 # PD Buddy Sink Serial Console Configuration Interface
1
 # PD Buddy Sink Serial Console Configuration Interface
2
 
2
 
3
-Version 1.1.0-dev, 2017-07-28
3
+Version 1.1.0, 2017-08-02
4
 
4
 
5
 The PD Buddy Sink can be put into setup mode by holding the Setup button while
5
 The PD Buddy Sink can be put into setup mode by holding the Setup button while
6
 plugging it into a computer.  In this mode, the device runs a configuration
6
 plugging it into a computer.  In this mode, the device runs a configuration

+ 2
- 2
src/usbcfg.c View File

187
  * Serial Number string.
187
  * Serial Number string.
188
  */
188
  */
189
 static const uint8_t vcom_string3[] = {
189
 static const uint8_t vcom_string3[] = {
190
-    USB_DESC_BYTE(20),                    /* bLength.                         */
190
+    USB_DESC_BYTE(12),                    /* bLength.                         */
191
     USB_DESC_BYTE(USB_DESCRIPTOR_STRING), /* bDescriptorType.                 */
191
     USB_DESC_BYTE(USB_DESCRIPTOR_STRING), /* bDescriptorType.                 */
192
-    '1', 0, '.', 0, '1', 0, '.', 0, '0', 0, '-', 0, 'd', 0, 'e', 0, 'v', 0
192
+    '1', 0, '.', 0, '1', 0, '.', 0, '0', 0
193
 };
193
 };
194
 
194
 
195
 /*
195
 /*

Loading…
Cancel
Save