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
mbed.bld@0:00b5baa80198, 2015-11-04 (annotated)
- Committer:
- rlanghbv
- Date:
- Wed Nov 04 20:58:44 2015 +0000
- Revision:
- 0:00b5baa80198
Serial3 Loopback
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
rlanghbv | 0:00b5baa80198 | 1 | http://mbed.org/users/mbed_official/code/mbed/builds/b9ad9a133dc7 |