Difference between revisions of "MMC Card Reader"

From OpenCircuits
Jump to navigation Jump to search
m
(clarified (I hope))
 
(10 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
This project aims to develop an MMC Card Reader, interfacing with a 8/16 bits embedded system such as the dsPic33F development board.
 +
 
==Objectives==
 
==Objectives==
*Develop a file system for MMC suitable for reading/writing FAT16 & FAT32 file systems in 8/16-bit embedded systems
 
*posix api/standard library and stdio.h
 
 
===Benefits===
 
*save large files (e.g. html) for feature expansion
 
*upload firmware over ethernet, and upgrade firmware remotely
 
  
===Limitations===
+
The use of MMC in embedded systems enables the systems to possess a removable, upgradeable and external mass storage.
*File read/write access may be slow
 
  
 +
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.
  
==Architecture==
+
While our MMC card reader will use the MMC protocol, we probably won't use actual MMC cards.
*See [{{SERVER}}/Multi-purpose_Embedded_System#File_System here] for block diagram
+
MultiMedia Card (MMC) is long obsolete and superseded by SD and SDHC.
 +
We will most likely use the more commonly available SD cards, which support both the [[MultiMediaCard]] protocol and the SD protocol.
 +
The MMC protocol is the easiest way to communicate with SD cards.
 +
SD cards have relatively high density, rewritability and low cost.
  
  
==[[Development Roadmap for MMC Card Reader]]==
+
===Benefits===
*Contains directions for development
+
*Save large files (e.g. html) for application feature expansion
 +
*Provide storage space for upload and upgrade firmware remotely (e.g. over the Internet)
 +
*Save fonts, image files for GUI applications
  
 +
===Limitations===
 +
*File read/write access may be slow
  
==Circuit and PCB==
 
*to be added
 
  
 +
== Development ==
 +
[[MMC Card Reader Development]]
 +
*Describe the development of the project
  
==Software Implementation==
+
[[category:projects]]
*[http://efsl.be/ Embedded Filesystem Library]
 
*[http://elm-chan.org/fsw/ff/00index_e.html FatFs]
 

Latest revision as of 20:57, 16 December 2014

This project aims to develop an MMC Card Reader, interfacing with a 8/16 bits embedded system such as the dsPic33F development board.

Objectives[edit]

The use of MMC in embedded systems enables the systems to possess a removable, upgradeable and external mass storage.

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.

While our MMC card reader will use the MMC protocol, we probably won't use actual MMC cards. MultiMedia Card (MMC) is long obsolete and superseded by SD and SDHC. We will most likely use the more commonly available SD cards, which support both the MultiMediaCard protocol and the SD protocol. The MMC protocol is the easiest way to communicate with SD cards. SD cards have relatively high density, rewritability and low cost.


Benefits[edit]

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

Limitations[edit]

  • File read/write access may be slow


Development[edit]

MMC Card Reader Development

  • Describe the development of the project