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.
Dependencies: USBDevice mbed-dev lwip
Fork of USBSerial_HelloWorld by
main.cpp
- Committer:
- samux
- Date:
- 2011-11-17
- Revision:
- 5:ee94acbf45df
- Parent:
- 4:95c491d36524
- Child:
- 6:aef06cd11ce4
File content as of revision 5:ee94acbf45df:
#include "mbed.h"
#include "USBSerial.h"
//Virtual serial port over USB
USBSerial serial;
Serial pc(USBTX, USBRX);
int main(void) {
while(1)
{
serial.printf("I am a virtual serial port!\r\n");
wait(1);
}
}
