asd

Dependencies:   mbed

Fork of Serial_HelloWorld_Mbed by mbed official

main.cpp

Committer:
umairaftab
Date:
2014-12-03
Revision:
2:4824df3bdaf9
Parent:
0:879aa9d0247b

File content as of revision 2:4824df3bdaf9:

#include "mbed.h"
 
Serial pc(PTA2, PTA1); // tx, rx
 
int main() {
    pc.baud(115200);

    pc.printf("Hello World!\n");
    while(1) {
        pc.putc(pc.getc() + 1);
    }
}