Difference between revisions of "MMC Card Reader"

From OpenCircuits
Jump to navigation Jump to search
Line 1: Line 1:
 
==Objectives==
 
==Objectives==
*Develop a file system for MMC suitable for reading/writing FAT16 & FAT32 file systems in 8/16-bit embedded systems
+
MultiMedia Card (MMC) is commonly used in portable devices due to their high density, rewritability and low cost. The use of MMC in embedded systems enables the systems to possess a removable, upgradeable and external mass storage.
*posix api/standard library and stdio.h
+
 
 +
MMC Manufacturers usually formats the cards in FAT12/FAT16/FAT32, and can be read/write in almost all computers. This project aims to integrate a FAT file system in freertos_posix for reading/writing files in MMC by 8/16-bit embedded systems. The API employs POSIX and Standard C-library standard for I/O operations.
  
 
===Benefits===
 
===Benefits===
*save large files (e.g. html) for feature expansion
+
*Save large files (e.g. html) for application feature expansion
*upload firmware over ethernet, and upgrade firmware remotely
+
*Provide storage space for upload and upgrade firmware remotely (e.g. over the Internet)
  
 
===Limitations===
 
===Limitations===

Revision as of 22:48, 16 February 2009

Objectives

MultiMedia Card (MMC) is commonly used in portable devices due to their high density, rewritability and low cost. The use of MMC in embedded systems enables the systems to possess a removable, upgradeable and external mass storage.

MMC Manufacturers usually formats the cards in FAT12/FAT16/FAT32, and can be read/write in almost all computers. This project aims to integrate a FAT file system in freertos_posix for reading/writing files in MMC by 8/16-bit embedded systems. The API employs POSIX and Standard C-library standard for I/O operations.

Benefits

  • Save large files (e.g. html) for application feature expansion
  • Provide storage space for upload and upgrade firmware remotely (e.g. over the Internet)

Limitations

  • File read/write access may be slow


Architecture

  • See here for block diagram


Development Roadmap for MMC Card Reader

  • Contains directions for development


Circuit and PCB


Software Implementation