nucleo l073 sd card test code

Dependencies:   SDFileSystem mbed

Fork of nucleo_sdcard by emin demir

main.cpp

Committer:
teknoarge
Date:
2016-02-09
Revision:
0:b0bc1d4fe0d4

File content as of revision 0:b0bc1d4fe0d4:

#include "mbed.h"
#include "SDFileSystem.h"
 
SDFileSystem sd(D11, D12, D13, D4, "sd"); // the pinout on the mbed Cool Components workshop board
 
int main() {
    printf("Hello World!\n");   
 
    mkdir("/sd/mydir", 0777);
    
    FILE *fp = fopen("/sd/mydir/sdtest.txt", "w");
    if(fp == NULL) {
        error("Could not open file for write\n");
    }
    fprintf(fp, "Hello fun SD Card World!");
    fclose(fp); 
 
    printf("Goodbye World!\n");
}