Projet_S5 / Mbed 2 deprecated Repo_Noeud_Mobile_refactor

Dependencies:   mbed-rtos mbed

Fork of Repo_Noeud_Mobile by Projet_S5

Revision:
17:1a634bb615f3
Parent:
3:a77d02cb5694
--- a/CountDown/CountDown.cpp	Sat Mar 21 17:24:38 2015 +0000
+++ b/CountDown/CountDown.cpp	Sat Mar 21 19:14:30 2015 +0000
@@ -1,5 +1,4 @@
 #include "CountDown.h"
-Serial pc(USBTX, USBRX);
 CountDown::CountDown(int time)
     // initialisation list
     : t(time>>2) /// division par 4 pour temps entre ch. LED. 
@@ -30,9 +29,7 @@
     while(j) // Actual CountDown. 
     {
         j--;
-        pc.printf("run\r\n");
         Thread::wait(t);
-        pc.printf("after wait \r\n");
         led[j]->write(0);
     }