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-30
- Revision:
- 6:aef06cd11ce4
- Parent:
- 5:ee94acbf45df
- Child:
- 7:5e693654d5b4
File content as of revision 6:aef06cd11ce4:
#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(0.5); } }