LAB10 tamplate for Oppgave2

Dependencies:   mbed

Fork of LAB10_Oppgave1 by EN-SOC3001

Import program

00001 #include "mbed.h"
00002 
00003 Serial pc(USBTX, USBRX);
00004 
00005 // The pc has sendt a char to us
00006 void pcTxSrialData()
00007 {   char rxData=pc.getc();
00008     pc.putc(rxData);
00009 }
00010 
00011 int main()
00012 {
00013     //Listen for serial data from the PC
00014     pc.attach(&pcTxSrialData);
00015 
00016     while (1) {
00017         wait(1);
00018     }
00019 }
00020 
00021 
00022 

Files at this revision

API Documentation at this revision

Comitter:
rlanghbv
Date:
Wed Nov 04 19:23:37 2015 +0000
Parent:
1:c3e8496642b4
Commit message:
fix

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Wed Nov 04 19:22:51 2015 +0000
+++ b/main.cpp	Wed Nov 04 19:23:37 2015 +0000
@@ -11,7 +11,7 @@
 int main()
 {
     //Listen for serial data from the PC
-    pc.attach(&callback);
+    pc.attach(&pcTxSrialData);
 
     while (1) {
         wait(1);