USB device stack

Fork of USBDevice by mbed official

Files at this revision

API Documentation at this revision

Comitter:
KillingJacky
Date:
Wed Nov 04 10:00:54 2015 +0000
Parent:
58:f3cad7e6984e
Commit message:
init commit

Changed in this revision

USBSerial/USBSerial.h Show annotated file Show diff for this revision Revisions of this file
diff -r f3cad7e6984e -r addb0b0c2f90 USBSerial/USBSerial.h
--- a/USBSerial/USBSerial.h	Wed Jul 08 14:46:06 2015 +0100
+++ b/USBSerial/USBSerial.h	Wed Nov 04 10:00:54 2015 +0000
@@ -56,7 +56,7 @@
     * @param connect_blocking define if the connection must be blocked if USB not plugged in
     *
     */
-    USBSerial(uint16_t vendor_id = 0x1f00, uint16_t product_id = 0x2012, uint16_t product_release = 0x0001, bool connect_blocking = true): USBCDC(vendor_id, product_id, product_release, connect_blocking){
+    USBSerial(uint16_t vendor_id = 0x1f00, uint16_t product_id = 0x2012, uint16_t product_release = 0x0001, bool connect_blocking = false): USBCDC(vendor_id, product_id, product_release, connect_blocking){
         settingsChangedCallback = 0;
     };