demo versie 16/05

Dependencies:   EthernetInterface mbed-rto mbed

Fork of ProjectVLC by Klaas Govaerts

Committer:
KlaasGovaerts
Date:
Wed May 09 14:19:16 2018 +0000
Revision:
62:237e32fd3555
Parent:
43:b69c7baa5d31
Child:
71:5e8ba1357442
Child:
74:8c0068ed7c1e
Child:
78:8efde3e9e3fb
Printf statements verwijderd.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
KlaasGovaerts 30:996da48a265c 1 #include "Receiver.h"
KlaasGovaerts 30:996da48a265c 2
KlaasGovaerts 31:915f6cb7ffa5 3 Receiver::Receiver(Queue<int,8>* queue):interpreter(queue){
KlaasGovaerts 30:996da48a265c 4 }
KlaasGovaerts 30:996da48a265c 5
KlaasGovaerts 30:996da48a265c 6 void Receiver::start(){
KlaasGovaerts 30:996da48a265c 7 while(true){
KlaasGovaerts 30:996da48a265c 8 listener.receiveSegment(command,sizeof(command));
KlaasGovaerts 30:996da48a265c 9 interpreter.executeCommand(command);
KlaasGovaerts 30:996da48a265c 10 }
KlaasGovaerts 30:996da48a265c 11 }