RainbowTeam / Mbed 2 deprecated ProjectTheseus

Dependencies:   mbed

Revision:
9:5802ccfcc984
Parent:
8:73c8188916dc
Child:
11:68ee67d17320
Child:
14:0caa7b93af7a
--- a/Mapping.cpp	Mon May 07 16:30:51 2018 +0000
+++ b/Mapping.cpp	Tue May 08 12:32:31 2018 +0000
@@ -6,6 +6,7 @@
 #include "Mapping.h"
 #include "SDFileSystem.h"
 
+DigitalOut myled1(LED1);
 
 //debug
 //DigitalOut myled(LED2);
@@ -402,7 +403,12 @@
 
     //Unmount the filesystem
     sd.unmount();
-    
+    while(1) {
+        myled1 = 1;
+        wait(0.2);
+        myled1 = 0;
+        wait(0.2);
+    }
 }