UART예제

Dependencies:   mbed

main.cpp

Committer:
robertchoi
Date:
2017-10-16
Revision:
0:02f8a386a4ae

File content as of revision 0:02f8a386a4ae:

// Print "Hello World" to the PC

#include "mbed.h"

Serial pc(USBTX, USBRX);

int main() {
    pc.baud(115200);
    
    
    
    pc.printf("Hello World\n");
    
}