routeur done

Dependencies:   mbed

Fork of APP4 by S5info_H14

Revision:
1:2834a4d9fa61
Parent:
0:71df0feee697
--- a/main.cpp	Sun Feb 23 23:32:09 2014 +0000
+++ b/main.cpp	Sun Feb 23 23:59:08 2014 +0000
@@ -1,11 +1,18 @@
-#include "mbed.h"
 #include "readfile.hpp"
 
 LocalFileSystem local("local");
 
+DigitalOut reset(p8);
+Serial pc(USBTX, USBRX);
+Serial portCom(p13, p14);
+
 int main()
 {
+    reset = 0;
+    wait(0.4);
+    reset = 1;
     
+    portCom.printf("Bonjour, toi!!!");
     
     return 0;
 }