demo versie 16/05

Dependencies:   EthernetInterface mbed-rto mbed

Fork of ProjectVLC by Klaas Govaerts

Committer:
KlaasGovaerts
Date:
Tue May 15 21:34:09 2018 +0000
Revision:
74:8c0068ed7c1e
Parent:
62:237e32fd3555
Probeersel (werkt niet).

Who changed what in which revision?

UserRevisionLine numberNew contents of line
KlaasGovaerts 30:996da48a265c 1 #include "Receiver.h"
KlaasGovaerts 30:996da48a265c 2
KlaasGovaerts 74:8c0068ed7c1e 3 Receiver::Receiver(Queue<QueueMessage,1>* 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 }