Arduino Fat16 Library

Copyright © 2008 by William Greiman

Introduction

The Arduino Fat16 Library is a minimal implementation of the FAT16 file system on standard SD flash memory cards. Fat16 supports read, write and file creation.

The Fat16 class only supports access to files in the root directory and only supports short 8.3 names. Directory time and date fields for creation, access and write are not maintained.

Fat16 was designed to use the Arduino Version 12 Print class which allows files to be written with print() and println().

It should be possible to use Fat16 with storage devices other than SD flash cards. Hardware access can be through any class derived from the BlockDevice class.

Hardware Configuration

Fat16 was developed using an Adafruit Industries GPS Shield. See the Schematic for details.

Warning

Fat16 has been tested with several SD Cards but is bound to contain many bugs. In most companies this would be called pre-alpha software. I hope people will try it and send me comments.

Bugs and Comments

If you wish to report bugs or have comments, send email to fat16lib@sbcglobal.net.

Fat16 Usage

The class Fat16 is a minimal implementation of FAT16 on standard SD cards. High Capacity SD cards, SDHC, are not supported. It should work on all standard cards from 8MB to 2GB formatted with a FAT16 file system.

Note:
The Arduino Print class uses character at a time writes so it was necessary to use a sync() function to control when data is written to the SD card.
An application which writes to a file using print(), println() or write() must call sync() at the appropriate time to force data and directory information to be written to the SD Card. Data and directory information are also written to the SD card when close() is called.
Applications must use care calling sync() since 2048 bytes of I/O is required to update file and directory information. This includes writing the current data block, reading the block that contains the directory entry for update, writing the directory block back and reading back the current data block.
Fat16 only supports access to files in the root directory and only supports short 8.3 names.

It is possible to open a file with two or more instances of Fat16. A file may be corrupted if data is written to the file by more than one instance of Fat16.

Short names are limited to 8 characters followed by an optional period (.) and extension of up to 3 characters. The characters may be any combination of letters and digits. The following special characters are also allowed:

$ % ' - _ @ ~ ` ! ( ) { } ^ # &

Short names are always converted to upper case and their original case value is lost.

Fat16 uses a slightly restricted form of short names. Only printable ASCII characters are supported. No characters with code point values greater than 127 are allowed. Space is not allowed even though space was allowed in the API of early versions of DOS.

Fat16 has been optimized for The Arduino ATmega168. Minimizing RAM use is the highest priority goal followed by flash use and finally performance. Most SD cards only support 512 byte block write operations so a 512 byte cache buffer is used by Fat16. This is the main use of RAM. A small amount of RAM is used to store key volume and file information. Flash memory usage can be controlled by selecting options in Fat16Config.h.

How to format SD Cards as FAT16 Volumes

Microsoft operating systems support removable media formatted with a Master Boot Record, MBR, or formatted as a super floppy with a FAT Boot Sector in block zero.

Microsoft operating systems expect MBR formatted removable media to have only one partition. The first partition should be used.

Microsoft operating systems do not support partitioning SD flash cards. If you erase an SD card with a program like KillDisk, Most versions of Windows will format the card as a super floppy.

The best way to restore an SD card's MBR is to use SDFormatter which can be downloaded from:

http://www.sdcard.org/consumers/formatter/

SDFormatter does not have an option for FAT type so it may format small cards as FAT12 and larger cards as FAT32.

After the MBR is restored by SDFormatter you can reformat it and force the volume type to be FAT16 by selecting the FAT option on XP or specifying the "Allocation unit size" on Vista.

The FAT type, FAT12, FAT16, or FAT32, is determined by the count of clusters on the volume and nothing else.

Microsoft published the following code for determining FAT type:

if (CountOfClusters < 4085) {
  // Volume is FAT12
}
else if (CountOfClusters < 65525) {
  // Volume is FAT16
}
else {
  // Volume is FAT32
}
When you format a FAT volume, choose a cluster size that will result in:

4084 < CountOfClusters && CountOfClusters < 65525

The volume will then be FAT16.

If you are formatting an SD card on OS X or Linux, be sure to use the first partition. Format this partition with a cluster count in above range.

References

The Arduino site:

http://www.arduino.cc/

For more information about FAT file systems see:

http://www.microsoft.com/whdc/system/platform/firmware/fatgen.mspx

For information about using SD cards as SPI devices see:

http://www.sdcard.org/developers/tech/sdcard/pls/Simplified_Physical_Layer_Spec.pdf

The ATmega168 datasheet:

http://www.atmel.com/dyn/resources/prod_documents/doc8025.pdf


Generated on Thu Oct 9 08:22:19 2008 for Fat16 by  doxygen 1.5.6