USB device stack

Dependents:   mbed-mX-USB-TEST1 USBMSD_SD_HID_HelloWorld HidTest MIDI_usb_bridge ... more

Legacy Warning

This is an mbed 2 library. To learn more about mbed OS 5, visit the docs.

Pull requests against this repository are no longer supported. Please raise against mbed OS 5 as documented above.

Revision:
6:d0945750af57
Parent:
1:80ab0d068708
Child:
11:eeb3cbbaa996
--- a/USBSerial/USBSerial.cpp	Sun Oct 14 15:08:52 2012 +0000
+++ b/USBSerial/USBSerial.cpp	Thu Dec 20 17:05:37 2012 +0000
@@ -20,6 +20,8 @@
 #include "USBSerial.h"
 
 int USBSerial::_putc(int c) {
+    if (!terminal_connected)
+        return 0;
     send((uint8_t *)&c, 1);
     return 1;
 }