s
Dependencies: mbed
Fork of LAB10_Oppgave2 by
main.cpp
- Committer:
- rlanghbv
- Date:
- 2015-11-04
- Revision:
- 2:dc9d556924d9
- Parent:
- 1:c3e8496642b4
File content as of revision 2:dc9d556924d9:
#include "mbed.h" Serial pc(USBTX, USBRX); // The pc has sendt a char to us void pcTxSrialData() { char rxData=pc.getc(); pc.putc(rxData); } int main() { //Listen for serial data from the PC pc.attach(&pcTxSrialData); while (1) { wait(1); } }