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: mbed
main.cpp
- Committer:
- dwijaybane
- Date:
- 2015-10-06
- Revision:
- 0:4d026a6a21e1
- Child:
- 1:6c18d1209b0e
File content as of revision 0:4d026a6a21e1:
#include "mbed.h"
Serial pc(USBTX, USBRX); // tx, rx
int main() {
pc.printf("Hello World!\n\r");
pc.printf("Type any characters\n\r");
while(1) {
pc.putc(pc.getc()); //echo recieved character
}
}