ian rau / Mbed 2 deprecated ProjectVLC

Dependencies:   EthernetInterface mbed-rto mbed

Fork of ProjectVLC by Klaas Govaerts

Files at this revision

API Documentation at this revision

Comitter:
KlaasGovaerts
Date:
Tue May 15 22:17:52 2018 +0000
Parent:
75:31c15986b85e
Child:
77:6477a4fefa70
Commit message:
Added more documentation.

Changed in this revision

Receiver.h Show annotated file Show diff for this revision Revisions of this file
TCPlistener.h Show annotated file Show diff for this revision Revisions of this file
--- a/Receiver.h	Tue May 15 21:44:25 2018 +0000
+++ b/Receiver.h	Tue May 15 22:17:52 2018 +0000
@@ -4,6 +4,9 @@
 
 #ifndef RECEIVER_H
 #define RECEIVER_H
+    /**
+    * A class used to receive commands via TCP and execute them.
+    */
     class Receiver{
         private:
             Queue<int,8>* queue;
--- a/TCPlistener.h	Tue May 15 21:44:25 2018 +0000
+++ b/TCPlistener.h	Tue May 15 22:17:52 2018 +0000
@@ -5,6 +5,9 @@
 
 #ifndef TCPLISTENER_H
 #define TCPLISTENER_H
+    /**
+    * Class used to receive segments using TCP.
+    */
     class TCPlistener{
         private:
             EthernetInterface eth;