PC Terminal=Tera Term charcter display

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 //Hello mbed pc world!
00002 #include "mbed.h"
00003 
00004 Serial pc(USBTX, USBRX); // tx, rx
00005 
00006 int main() {
00007     while(1){
00008       pc.printf("Hello mbed pc World!\n");
00009     }
00010 }
00011