chuankou

Dependencies:   mbed

2.cpp

Committer:
skycc6
Date:
2018-09-16
Revision:
0:d57c597c04c6

File content as of revision 0:d57c597c04c6:

// Print "Hello World" to the PC

#include "mbed.h"


Serial pc(PA_9, PA_10,9600);

int main() {
    while(1)
    {
        pc.printf("Hello World\n");
        wait(1);
    }
}