Niranjan Ravi / Mbed 2 deprecated frdm_simpleHelloWOrld_k64F

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002  
00003 Serial pc(USBTX, USBRX);
00004 int main() {
00005     while(1) {
00006         pc.baud(115200);
00007         pc.printf("helloworld");
00008     }
00009 }