adds a USB serial port to your design

Dependents:   Example_WatchDog_Timer

Revision:
79:ac72418e2b64
Parent:
78:772335cfca9a
diff -r 772335cfca9a -r ac72418e2b64 USBSerial/USBSerial.h
--- a/USBSerial/USBSerial.h	Mon Nov 26 21:00:06 2018 +0000
+++ b/USBSerial/USBSerial.h	Wed Jan 30 22:28:57 2019 +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;
     };