Well here it is. After reading this you should be able to:
- Add an SD/MMC card to your Arduino.
- Read data from and write data to it using the uFat and DevicePrint libraries.
- Understand a few of the issues related to the process.
On with the show.
MMC cards are a microcontroller's best friend. They can speak a serial protocol called SPI which is natively supported in the microcontroller hardware. I love 'em. You only need 4 IO lines to transmit commands and data to the card and receive data back. These connections go by a number of names but this is the set which will service you best:
/CS (not card select)
CLK (clock)
MOSI (master out, slave in)
MISO (master in, slave out)
Master in all cases is the Arduino. Digital pins 10 through 13 are the dedicated SPI connections. If your application already uses these you'll have to move things around! All the SD/MMC enabled boards I've seen use these pins. The information here should be applicable to anyone's SD/MMC enabled hardware.
Here's the MMC pinout...

...and here's how it needs to be connected:
MMC Arduino
1 10
2 11
3 gnd
4 3v3
5 13
6 gnd
7 12
MMC Cards require between 2.7 and 3.6 volts to operate. Low power varieties are also available that work down to 1.8V, though these are special and more rare. You can power a card from the Arduino's 3v3 output if it's available on your particular Arduino variety. There will need to be some level conversion on the /CS, CLK and MOSI lines, as these output 5V. As the Arduino regards 2.4V and above as a logic high, no level conversion needs to be done on the MISO line. There are some boards out there which operate at 3.3V natively, and for these boards all lines may be connected directly.
We do any neccessary 5V level conversion in the simplest way possible: with a voltage divider. There is great information elsewhere, linked below, so I won't go into any more detail than this:
VDD --[R1]-- v --[R2]-- GND
The voltage v can be calculated by using the following formula:
v = (VDD*R2) / (R1+R2)
In most cases you should use R1 = 1K8 and R2 = 3K3. Tapping the voltage at the centre of the resistor/resistor connection yields ~ 3.24V. Actual values will vary a little depending on the accuracy of the resistors.
Some cards can cope with voltages out of the specified range, and some cannot. I have cards which have functioned happily as high as 4.3V, and one in particular which developed a high fever followed by sudden explosive death when faced with the same levels... Ahem. The less said about that the better.
The product standard dictates the signal levels that you should aim for in your circuit.
Input HIGH voltage:
- min: 0.625 * VDD
- max: VDD + 0.3
- min: VSS - 0.3
- max: 0.25 * VDD[/tt]

There are 3 kinds of socket available. MMC, SD and floppy-drive edge connector

- MMC sockets have 7 connectors and map 1:1 to the diagram above.
- SD sockets can have up to 12 or 13 pins, but only the main 7 need to be used. The remainder are for detection of card insertion and write protect status of compatible SD cards. agent_orange's schematic shows a socket of this type.
- Floppy edge-connector sockets are best for MMC cards (SD cards are thicker with ridges protecting the contacts) but are undoubtedly the cheapest! Check out the ingenious hack at Up All Night Robotics, linked below.
It might not even help to discuss the MMC's command protocol over and above the fact that data transfers happen in 512 byte blocks. This can be changed, but I don't think there's a compelling reason to do this, especially as this most usually matches the sector size of the card.
<Next>
