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:
31:915f6cb7ffa5
Probeersel (werkt niet).

Who changed what in which revision?

UserRevisionLine numberNew contents of line
KlaasGovaerts 28:bf62c46acb3e 1 #include "rtos.h"
KlaasGovaerts 30:996da48a265c 2 #include "Interpreter.h"
KlaasGovaerts 30:996da48a265c 3 #include "TCPlistener.h"
KlaasGovaerts 28:bf62c46acb3e 4
KlaasGovaerts 28:bf62c46acb3e 5 #ifndef RECEIVER_H
KlaasGovaerts 28:bf62c46acb3e 6 #define RECEIVER_H
KlaasGovaerts 28:bf62c46acb3e 7 class Receiver{
KlaasGovaerts 28:bf62c46acb3e 8 private:
KlaasGovaerts 74:8c0068ed7c1e 9 Queue<QueueMessage,1>* queue;
KlaasGovaerts 30:996da48a265c 10 Interpreter interpreter;
KlaasGovaerts 30:996da48a265c 11 TCPlistener listener;
KlaasGovaerts 30:996da48a265c 12 char command[512];
KlaasGovaerts 28:bf62c46acb3e 13 public:
KlaasGovaerts 74:8c0068ed7c1e 14 Receiver(Queue<QueueMessage,1>* queue);
KlaasGovaerts 30:996da48a265c 15 void start();
KlaasGovaerts 28:bf62c46acb3e 16 };
KlaasGovaerts 28:bf62c46acb3e 17 #endif