Difference between revisions of "MMC Card Reader"
(add development) |
(welcome to 21st century) |
||
Line 2: | Line 2: | ||
==Objectives== | ==Objectives== | ||
− | MultiMedia Card (MMC) is | + | While MultiMedia Card (MMC) is long obdolete and superseded by SD and SDHC in several sizes in portable devices, it is within reach for many embedded designs. They still have relatively 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. | 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. |
Revision as of 13:47, 1 November 2009
This project aims to develop an MMC Card Reader, interfacing with a 8/16 bits embedded system such as the dsPic33F development board.
Objectives
While MultiMedia Card (MMC) is long obdolete and superseded by SD and SDHC in several sizes in portable devices, it is within reach for many embedded designs. They still have relatively 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)
- Save fonts, image files for GUI applications
Limitations
- File read/write access may be slow
Development
- Describe how the development of the project