Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Homepage
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