Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Diff: Mapping.cpp
- 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);
+ }
}