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 
Committer:
rlanghbv
Date:
Wed Nov 04 19:22:51 2015 +0000
Revision:
1:c3e8496642b4
Parent:
0:1fe30bae9dc1
Child:
2:dc9d556924d9
Changed to IRQ

Who changed what in which revision?

UserRevisionLine numberNew contents of line
rlanghbv 0:1fe30bae9dc1 1 #include "mbed.h"
rlanghbv 1:c3e8496642b4 2
rlanghbv 0:1fe30bae9dc1 3 Serial pc(USBTX, USBRX);
rlanghbv 1:c3e8496642b4 4
rlanghbv 1:c3e8496642b4 5 // The pc has sendt a char to us
rlanghbv 1:c3e8496642b4 6 void pcTxSrialData()
rlanghbv 1:c3e8496642b4 7 { char rxData=pc.getc();
rlanghbv 1:c3e8496642b4 8 pc.putc(rxData);
rlanghbv 1:c3e8496642b4 9 }
rlanghbv 1:c3e8496642b4 10
rlanghbv 1:c3e8496642b4 11 int main()
rlanghbv 1:c3e8496642b4 12 {
rlanghbv 1:c3e8496642b4 13 //Listen for serial data from the PC
rlanghbv 1:c3e8496642b4 14 pc.attach(&callback);
rlanghbv 1:c3e8496642b4 15
rlanghbv 0:1fe30bae9dc1 16 while (1) {
rlanghbv 1:c3e8496642b4 17 wait(1);
rlanghbv 0:1fe30bae9dc1 18 }
rlanghbv 0:1fe30bae9dc1 19 }
rlanghbv 0:1fe30bae9dc1 20
rlanghbv 0:1fe30bae9dc1 21
rlanghbv 0:1fe30bae9dc1 22