First version

Dependencies:   mbed EthernetInterface mbed-rto

Revision:
38:47c075a354b5
Parent:
32:537005b4a065
Child:
40:962dbbd32f4c
Child:
41:b69c7baa5d31
--- a/main.cpp	Wed May 02 06:33:40 2018 +0000
+++ b/main.cpp	Wed May 02 12:44:26 2018 +0000
@@ -18,9 +18,10 @@
 
 int main (void){
         Queue<int,8> queue;
-        Thread thread;
+        Thread threadeth;
+        Thread driverThread;
         while(true){
-            thread.start(receive,&queue);
-            thread.start(LEDStart,&queue);
+            threadeth.start(receive,&queue);
+            driverThread.start(LEDStart,&queue);
         }       
 }