LAB10 tamplate for Oppgave1

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 pc(USBTX, USBRX);
00004   
00005 int main() {    
00006     while (1) {
00007         pc.putc(pc.getc());
00008     }
00009 }
00010 
00011 
00012