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.
main_serial.cpp
- Committer:
- va009039
- Date:
- 2016-01-18
- Revision:
- 2:c0c2a61188a9
- Parent:
- 1:eea17a20509b
File content as of revision 2:c0c2a61188a9:
#if 0 // https://developer.mbed.org/handbook/USBSerial #include "mbed.h" #include "USBSerial.h" int main() { USBSerial serial; for(int n = 0;; n++) { serial.printf("I am a virtual serial port\r\n"); serial.printf("%d\r\n", n); wait_ms(1000); } } #endif