platform-ststm32/examples/mbed-serial/src/main.cpp

10 lines
188 B
C++
Raw Normal View History

2016-05-27 08:48:20 -07:00
#include "mbed.h"
Serial pc(USBTX, USBRX); // tx, rx
int main() {
pc.printf("Hello World!\n\r");
while(1) {
pc.putc(pc.getc() + 1); // echo input back to terminal
}
}