Sille Van Landschoot / Mbed 2 deprecated uart-echo

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 
00002 #include "mbed.h"
00003 
00004 Serial pc(USBTX, USBRX);
00005 
00006 int main()
00007 {
00008     pc.baud(115200);
00009 
00010     while(1){
00011         pc.putc(pc.getc());
00012     }
00013 }