Template for LAB10_Oppgave3
Dependencies: mbed
Import program
00001 #include "mbed.h" 00002 00003 Serial serial3(PB_9, PB_8); // tx, rx 00004 Serial pc(USBTX, USBRX); // tx, rx 00005 00006 void serial3Rx() 00007 { pc.putc(serial3.getc()); 00008 } 00009 00010 void pcRx() 00011 { serial3.putc(pc.getc()); 00012 } 00013 00014 int main() 00015 { 00016 serial3.attach(&serial3Rx); 00017 pc.attach(&pcRx); 00018 00019 while(1) { 00020 wait(1); 00021 } 00022 } 00023 00024 00025 00026