/* * Copyright (c) 2006-2012 by Roland Riegel * * This file is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #include #include #include #include "fat.h" #include "fat_config.h" #include "partition.h" #include "sd_raw.h" #include "sd_raw_config.h" #include "lcd.h" #define DEBUG 1 /** * \mainpage MMC/SD/SDHC card library * * This project provides a general purpose library which implements read and write * support for MMC, SD and SDHC memory cards. * * It includes * - low-level \link sd_raw MMC, SD and SDHC read/write routines \endlink * - \link partition partition table support \endlink * - a simple \link fat FAT16/FAT32 read/write implementation \endlink * * \section circuit The circuit * The circuit which was mainly used during development consists of an Atmel AVR * microcontroller with some passive components. It is quite simple and provides * an easy test environment. The circuit which can be downloaded on the * project homepage has been * improved with regard to operation stability. * * I used different microcontrollers during development, the ATmega8 with 8kBytes * of flash, and its pin-compatible alternative, the ATmega168 with 16kBytes flash. * The first one is the one I started with, but when I implemented FAT16 write * support, I ran out of flash space and switched to the ATmega168. For FAT32, an * ATmega328 is required. * * The circuit board is a self-made and self-soldered board consisting of a single * copper layer and standard DIL components, except of the MMC/SD card connector. * * The connector is soldered to the bottom side of the board. It has a simple * eject button which, when a card is inserted, needs some space beyond the connector * itself. As an additional feature the connector has two electrical switches * to detect wether a card is inserted and wether this card is write-protected. * * \section pictures Pictures * \image html pic01.jpg "The circuit board used to implement and test this application." * \image html pic02.jpg "The MMC/SD card connector on the soldering side of the circuit board." * * \section software The software * The software is written in C (ISO C99). It might not be the smallest or * the fastest one, but I think it is quite flexible. See the project's * benchmark page to get an * idea of the possible data rates. * * I implemented an example application providing a simple command prompt which is accessible * via the UART at 9600 Baud. With commands similiar to the Unix shell you can browse different * directories, read and write files, create new ones and delete them again. Not all commands are * available in all software configurations. * - cat \\n * Writes a hexdump of \ to the terminal. * - cd \\n * Changes current working directory to \. * - disk\n * Shows card manufacturer, status, filesystem capacity and free storage space. * - init\n * Reinitializes and reopens the memory card. * - ls\n * Shows the content of the current directory. * - mkdir \\n * Creates a directory called \. * - mv \ \\n * Renames \ to \. * - rm \\n * Deletes \. * - sync\n * Ensures all buffered data is written to the card. * - touch \\n * Creates \. * - write \ \\n * Writes text to \, starting from \. The text is read * from the UART, line by line. Finish with an empty line. * * \htmlonly *

* The following table shows some typical code sizes in bytes, using the 20090330 release with a * buffered read-write MMC/SD configuration, FAT16 and static memory allocation: *

* * * * * * * * * * * * * * * * * * * * * * *
layercode sizestatic RAM usage
MMC/SD2410518
Partition45617
FAT167928188
* *

* The static RAM is mostly used for buffering memory card access, which * improves performance and reduces implementation complexity. *

* *

* Please note that the numbers above do not include the C library functions * used, e.g. some string functions. These will raise the numbers somewhat * if they are not already used in other program parts. *

* *

* When opening a partition, filesystem, file or directory, a little amount * of RAM is used, as listed in the following table. Depending on the library * configuration, the memory is either allocated statically or dynamically. *

* * * * * * * * * * * * * * * * * * * * * * *
descriptordynamic/static RAM
partition17
filesystem26
file53
directory49
* * \endhtmlonly * * \section adaptation Adapting the software to your needs * The only hardware dependent part is the communication layer talking to the * memory card. The other parts like partition table and FAT support are * completely independent, you could use them even for managing Compact Flash * cards or standard ATAPI hard disks. * * By changing the MCU* variables in the Makefile, you can use other Atmel * microcontrollers or different clock speeds. You might also want to change * the configuration defines in the files fat_config.h, partition_config.h, * sd_raw_config.h and sd-reader_config.h. For example, you could disable * write support completely if you only need read support. * * For further information, visit the project's * FAQ page. * * \section bugs Bugs or comments? * If you have comments or found a bug in the software - there might be some * of them - you may contact me per mail at feedback@roland-riegel.de. * * \section acknowledgements Acknowledgements * Thanks go to Ulrich Radig, who explained on his homepage how to interface * MMC cards to the Atmel microcontroller (http://www.ulrichradig.de/). * I adapted his work for my circuit. * * \section copyright Copyright 2006-2012 by Roland Riegel * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 2 as published by * the Free Software Foundation (http://www.gnu.org/copyleft/gpl.html). * At your option, you can alternatively redistribute and/or modify the following * files under the terms of the GNU Lesser General Public License version 2.1 * as published by the Free Software Foundation (http://www.gnu.org/copyleft/lgpl.html): * - byteordering.c * - byteordering.h * - fat.c * - fat.h * - fat_config.h * - partition.c * - partition.h * - partition_config.h * - sd_raw.c * - sd_raw.h * - sd_raw_config.h * - sd-reader_config.h */ static struct fat_file_struct* open_file_in_dir(struct fat_fs_struct* fs, struct fat_dir_struct* dd, const char* name); int main() { lcd_init(LCD_DISP_ON); /* we will just use ordinary idle mode */ set_sleep_mode(SLEEP_MODE_IDLE); /* open first partition */ struct partition_struct* partition = partition_open(sd_raw_read, sd_raw_read_interval, 0, 0, 0 ); if(!partition) { /* If the partition did not open, assume the storage device * is a "superfloppy", i.e. has no MBR. */ partition = partition_open(sd_raw_read, sd_raw_read_interval, 0, 0, -1 ); } /* open file system */ struct fat_fs_struct* fs = fat_open(partition); /* open root directory */ struct fat_dir_entry_struct directory; fat_get_dir_entry_of_path(fs, "/", &directory); struct fat_dir_struct* dd = fat_open_dir(fs, &directory); // Print out all files/directories in top level while (1) { struct fat_dir_entry_struct dir_entry; while(fat_read_dir(dd, &dir_entry)) { // print out directory entry name lcd_clrscr(); lcd_gotoxy(0,0); lcd_puts(dir_entry.long_name); } } return 0; }