First version

Dependencies:   mbed EthernetInterface mbed-rto

Committer:
KlaasGovaerts
Date:
Wed Apr 25 13:25:13 2018 +0000
Revision:
24:bf62c46acb3e
Child:
29:996da48a265c
Verzenden via queues

Who changed what in which revision?

UserRevisionLine numberNew contents of line
KlaasGovaerts 24:bf62c46acb3e 1 #include "rtos.h"
KlaasGovaerts 24:bf62c46acb3e 2
KlaasGovaerts 24:bf62c46acb3e 3 #ifndef RECEIVER_H
KlaasGovaerts 24:bf62c46acb3e 4 #define RECEIVER_H
KlaasGovaerts 24:bf62c46acb3e 5 class Receiver{
KlaasGovaerts 24:bf62c46acb3e 6 private:
KlaasGovaerts 24:bf62c46acb3e 7 Queue<int,8> queue;
KlaasGovaerts 24:bf62c46acb3e 8 public:
KlaasGovaerts 24:bf62c46acb3e 9 Interpreter(Queue<int,8> queue);
KlaasGovaerts 24:bf62c46acb3e 10 };
KlaasGovaerts 24:bf62c46acb3e 11 #endif