Huy Hoang Nguyen / Mbed 2 deprecated UART0

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 device(PA_9, PA_10);  // tx, rx
00004  
00005 int main() {
00006     device.baud(19200);
00007     device.printf("Hello World\n");
00008 }