Lightweight SD card FAT file system. Originaled by chan http://elm-chan.org/fsw/ff/00index_p.html

Petit FAT File System for LPC1114

originaled by elm

If you want to use except LPC1114, you can change pin definitions at mmcPinConfig.h

more detail and original code at http://elm-chan.org/fsw/ff/00index_p.html

This library is NOT compatible with mbed official SDFileSystem

Committer:
hsgw
Date:
Fri May 09 19:41:49 2014 +0000
Revision:
0:845390b117a7
1st commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
hsgw 0:845390b117a7 1 #ifndef MMCPINCONFIG_H
hsgw 0:845390b117a7 2 #define MMCPINCONFIG_H
hsgw 0:845390b117a7 3
hsgw 0:845390b117a7 4 // pin configurations
hsgw 0:845390b117a7 5 #define MMC_MISO dp1
hsgw 0:845390b117a7 6 #define MMC_MOSI dp2
hsgw 0:845390b117a7 7 #define MMC_SCLK dp6
hsgw 0:845390b117a7 8 #define MMC_CS dp4
hsgw 0:845390b117a7 9
hsgw 0:845390b117a7 10 #endif