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.
Fork of USBSerial_HelloWorld by
main.cpp
- Committer:
- samux
- Date:
- 2011-11-11
- Revision:
- 0:a3e641b0dfc2
- Child:
- 4:95c491d36524
File content as of revision 0:a3e641b0dfc2:
#include "mbed.h" #include "USBSerial.h" //Virtual serial port over USB USBSerial serial; int main(void) { while(1) { serial.printf("I am a virtual serial port\r\n"); wait(1); } }