Image Writer / Mbed 2 deprecated SDCard_Aitendo_2p2TFT

Dependencies:   SDFileSystem mbed ILI9340_Driver_Lib

Fork of Seeed_SDCard_Shield by Shields

Files at this revision

API Documentation at this revision

Comitter:
screamer
Date:
Tue Mar 25 17:39:19 2014 +0000
Parent:
0:525c842a3c89
Child:
2:f2f5e2324ad4
Commit message:
Remove LEDs utilization due to incompatibility with some boards (e.g. SPI pins are also LED pins)

Changed in this revision

bdebug.h Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- a/bdebug.h	Mon Mar 17 15:45:16 2014 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,10 +0,0 @@
-/* blink debug */
-
-void blink(DigitalOut led, int count = 1, float delay = 0.2) {
-    led = 0;
-    int i=0;
-    for (i=0; i<count*2; i++) {
-        led = led ? 0 : 1;
-        wait(delay);
-    }
-}
\ No newline at end of file
--- a/main.cpp	Mon Mar 17 15:45:16 2014 +0000
+++ b/main.cpp	Tue Mar 25 17:39:19 2014 +0000
@@ -1,30 +1,27 @@
 #include "mbed.h"
 #include "SDFileSystem.h"
-#include "bdebug.h"
 
 SDFileSystem sd(D11, D12, D13, D10, "sd"); // MOSI, MISO, SCK, CS
-DigitalOut led1(LED1);
-DigitalOut led2(LED2);
+Serial pc(USBTX, USBRX);
 FILE *fp;
 
 int main() {
-    blink(led1, 1, 1);
+    wait(2);
+    pc.printf("Initializing\r\n");
     
     fp = fopen("/sd/hello.txt", "r");
     if (fp != NULL) {
         fclose(fp);
         remove("/sd/hello.txt");
+        pc.printf("Remove an existing file with the same name\r\n");
     }
     
     fp = fopen("/sd/hello.txt", "w");
     if (fp == NULL) {
-        blink(led2, 2);
+        pc.printf("Unable to write the file\r\n");
     } else {
-        blink(led1, 20, 0.05);
-        led1 = 1;
         fprintf(fp, "mbed SDCard application!");
         fclose(fp);
+        pc.printf("File successfully written!\r\n");
     }
-    
-    blink(led2, 1, 10);
 }
--- a/mbed.bld	Mon Mar 17 15:45:16 2014 +0000
+++ b/mbed.bld	Tue Mar 25 17:39:19 2014 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/mbed/builds/8e73be2a2ac1
\ No newline at end of file
+http://mbed.org/users/mbed_official/code/mbed/builds/7d30d6019079
\ No newline at end of file