SD card with the file system.

Dependencies:   SDFileSystem mbed

Fork of FTF2014_lab4 by Freescale

Files at this revision

API Documentation at this revision

Comitter:
Kojto
Date:
Thu Apr 03 09:05:13 2014 +0000
Child:
1:947a61831719
Commit message:
initial version

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Apr 03 09:05:13 2014 +0000
@@ -0,0 +1,38 @@
+#include "mbed.h"
+#include "SDFileSystem.h"
+
+SDFileSystem sd(PTE3, PTE1, PTE2, PTE4, "sd"); // MOSI, MISO, SCK, CS
+Serial pc(USBTX, USBRX);
+FILE *fp;
+char buffer[1024];
+
+int main() {
+    pc.printf("Initializing \n");
+    wait(2);
+
+    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 \n");
+    }
+
+    printf("\nWriting data to the sd card \n");
+    fp = fopen("/sd/hello.txt", "w");
+    if (fp == NULL) {
+        pc.printf("Unable to write the file \n");
+    } else {
+        fprintf(fp, "mbed SDCard application!");
+        fclose(fp);
+        pc.printf("File successfully written! \n");
+    }
+
+    printf("\nReading data from the SD card. \n");
+    fp = fopen("/sd/hello.txt", "r");
+    if (fp != NULL) {
+        int size = fread(buffer, sizeof(char), 1024, fp);
+        printf("Number of data read: %d, text from hello.txt file: %s \n", size, buffer);
+        fclose(fp);
+    }
+    printf("End of Lab 4. \n");
+}