USB device stack
Dependents: blinky_max32630fthr FTHR_USB_serial FTHR_OLED HSP_RPC_GUI_3_0_1 ... more
Fork of USBDevice by
Diff: USBSerial/USBSerial.cpp
- 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;
}
