v1 updated for mbed os 5.4

Fork of Task631-mbedos54 by Stage-1 Students SoCEM

Revision:
10:624be54e5299
Parent:
9:31031bbb59c7
--- a/main.cpp	Mon Mar 21 13:50:11 2016 +0000
+++ b/main.cpp	Mon Apr 03 14:11:54 2017 +0000
@@ -6,8 +6,8 @@
 
 #define SWITCH1_RELEASE 1
 
-void thread1( const void*  );
-void thread2( const void*  );
+void thread1();
+void thread2();
 void switchISR();
 
 //Analogue inputs
@@ -52,7 +52,7 @@
 }
 
 //Normal priority thread (consumer)
-void thread1( const void* arg ) 
+void thread1() 
 {    
     while (true) {
         //Read queue - block (with timeout)
@@ -100,7 +100,8 @@
     timer.attach(&adcISR, 1.0);
                
     //Threads
-    t1 = new Thread(&thread1); 
+    t1 = new Thread(); 
+    t1->start(thread1);
     
     printf("Main Thread\n");
     while (true) {