Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: mbed_11U24_CapacitorDose_V001
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;
}