]> cloudbase.mooo.com Git - z180-stamp.git/blame - fatfs/doc/00index_e.html
Merge branch 'chan-fatfs' into fatfs-integration
[z180-stamp.git] / fatfs / doc / 00index_e.html
CommitLineData
53668523
L
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">\r
2<html lang="en">\r
3<head>\r
4<meta http-equiv="Content-Type" content="text/html; charset=utf-8">\r
5<meta http-equiv="Content-Style-Type" content="text/css">\r
6<meta http-equiv="cache-control" content="no-cache">\r
7b78a5a2
L
7<meta name="description" content="Open source FAT file system for embedded projects">\r
8<link rel="start" title="Site Top" href="../../">\r
9<link rel="up" title="Freewares" href="../../fsw_e.html">\r
10<link rel="alternate" hreflang="en" title="Original" href="http://elm-chan.org/fsw/ff/00index_e.html">\r
53668523
L
11<link rel="alternate" hreflang="ja" title="Japanese version" href="00index_j.html">\r
12<link rel="stylesheet" href="css_e.css" type="text/css" media="screen" title="ELM Default">\r
13<title>FatFs - Generic FAT File System Module</title>\r
14</head>\r
15\r
16<body>\r
17<h1>FatFs - Generic FAT File System Module</h1>\r
18<hr>\r
19\r
20<div class="abst">\r
70702af1
L
21<img src="res/layers.png" class="rset" width="245" height="255" alt="layer">\r
22<p>FatFs is a generic FAT/exFAT file system module for small embedded systems. The FatFs module is written in compliance with ANSI C (C89) and completely separated from the disk I/O layer. Therefore it is independent of the platform. It can be incorporated into small microcontrollers with limited resource, such as 8051, PIC, AVR, ARM, Z80, 78K and etc. Also Petit FatFs module for tiny microcontrollers is available <a href="http://elm-chan.org/fsw/ff/00index_p.html">here</a>.</p>\r
53668523
L
23\r
24<h4>Features</h4>\r
25<ul>\r
70702af1 26 <li>Windows compatible FAT/exFAT file system.</li>\r
53668523 27 <li>Platform independent. Easy to port.</li>\r
70702af1
L
28 <li>Very small footprint for program code and work area.</li>\r
29 <li>Various <a href="en/config.html">configuration options</a> to support for:\r
53668523
L
30 <ul>\r
31 <li>Multiple volumes (physical drives and partitions).</li>\r
32 <li>Multiple ANSI/OEM code pages including DBCS.</li>\r
70702af1
L
33 <li>Long file name in ANSI/OEM or Unicode.</li>\r
34 <li>exFAT file system.</li>\r
35 <li>RTOS envilonment.</li>\r
36 <li>Fixed or variable sector size.</li>\r
37 <li>Read-only, optional API, I/O buffer and etc...</li>\r
53668523
L
38 </ul>\r
39 </li>\r
40</ul>\r
41</div>\r
42\r
43\r
44<div class="para">\r
45<h3>Application Interface</h3>\r
70702af1 46<img src="res/layers1.png" class="rset" width="245" height="220" alt="layer">\r
53668523 47<ul>\r
70702af1
L
48 <li>File Access\r
49 <ul>\r
50 <li><a href="en/open.html">f_open</a> - Open/Create a file</li>\r
51 <li><a href="en/close.html">f_close</a> - Close an open file</li>\r
52 <li><a href="en/read.html">f_read</a> - Read data</li>\r
53 <li><a href="en/write.html">f_write</a> - Write data</li>\r
54 <li><a href="en/lseek.html">f_lseek</a> - Move read/write pointer, Expand size</li>\r
55 <li><a href="en/truncate.html">f_truncate</a> - Truncate size</li>\r
56 <li><a href="en/sync.html">f_sync</a> - Flush cached data</li>\r
57 <li><a href="en/forward.html">f_forward</a> - Forward data to the stream</li>\r
58 <li><a href="en/expand.html">f_expand</a> - Allocate a contiguous block to the file</li>\r
59 <li><a href="en/gets.html">f_gets</a> - Read a string</li>\r
60 <li><a href="en/putc.html">f_putc</a> - Write a character</li>\r
61 <li><a href="en/puts.html">f_puts</a> - Write a string</li>\r
62 <li><a href="en/printf.html">f_printf</a> - Write a formatted string</li>\r
63 <li><a href="en/tell.html">f_tell</a> - Get current read/write pointer</li>\r
64 <li><a href="en/eof.html">f_eof</a> - Test for end-of-file</li>\r
65 <li><a href="en/size.html">f_size</a> - Get size</li>\r
66 <li><a href="en/error.html">f_error</a> - Test for an error</li>\r
67 </ul>\r
68 </li>\r
69 <li>Directory Access\r
70 <ul>\r
71 <li><a href="en/opendir.html">f_opendir</a> - Open a directory</li>\r
72 <li><a href="en/closedir.html">f_closedir</a> - Close an open directory</li>\r
73 <li><a href="en/readdir.html">f_readdir</a> - Read an directory item</li>\r
74 <li><a href="en/findfirst.html">f_findfirst</a> - Open a directory and read first item matched</li>\r
75 <li><a href="en/findnext.html">f_findnext</a> - Read a next item matched</li>\r
76 </ul>\r
77 </li>\r
78 <li>File/Directory Management\r
79 <ul>\r
80 <li><a href="en/stat.html">f_stat</a> - Check existance of a file or sub-directory</li>\r
81 <li><a href="en/unlink.html">f_unlink</a> - Remove a file or sub-directory</li>\r
82 <li><a href="en/rename.html">f_rename</a> - Rename or move a file or sub-directory</li>\r
83 <li><a href="en/chmod.html">f_chmod</a> - Change attribute of a file or sub-directory</li>\r
84 <li><a href="en/utime.html">f_utime</a> - Change timestamp of a file or sub-directory</li>\r
85 <li><a href="en/mkdir.html">f_mkdir</a> - Create a sub-directory</li>\r
86 <li><a href="en/chdir.html">f_chdir</a> - Change current directory</li>\r
87 <li><a href="en/chdrive.html">f_chdrive</a> - Change current drive</li>\r
88 <li><a href="en/getcwd.html">f_getcwd</a> - Retrieve the current directory and drive</li>\r
89 </ul>\r
90 </li>\r
91 <li>Volume Management\r
92 <ul>\r
93 <li><a href="en/mount.html">f_mount</a> - Register/Unregister a work area of a volume</li>\r
94 <li><a href="en/mkfs.html">f_mkfs</a> - Create an FAT volume on the logical drive</li>\r
95 <li><a href="en/fdisk.html">f_fdisk</a> - Create logical drives on the physical drive</li>\r
96 <li><a href="en/getfree.html">f_getfree</a> - Get total size and free size on the volume</li>\r
97 <li><a href="en/getlabel.html">f_getlabel</a> - Get volume label</li>\r
98 <li><a href="en/setlabel.html">f_setlabel</a> - Set volume label</li>\r
99 </ul>\r
100 </li>\r
53668523
L
101</ul>\r
102</div>\r
103\r
104\r
105<div class="para">\r
106<h3>Device Control Interface</h3>\r
70702af1
L
107<img src="res/layers2.png" class="rset" width="245" height="220" alt="layer">\r
108<p>Since the FatFs module is a file system layer, it is completely separated from the physical devices, such as memory card, harddisk and any type of storage device. FatFs accesses the storage devices via a simple interface shown below. The low level device control module is <em>not a part of FatFs module</em>. It is provided by implementer. Also sample implementations for some platforms are available in the downloads.</p>\r
53668523
L
109<ul>\r
110 <li><a href="en/dstat.html">disk_status</a> - Get device status</li>\r
111 <li><a href="en/dinit.html">disk_initialize</a> - Initialize device</li>\r
112 <li><a href="en/dread.html">disk_read</a> - Read sector(s)</li>\r
113 <li><a href="en/dwrite.html">disk_write</a> - Write sector(s)</li>\r
70702af1 114 <li><a href="en/dioctl.html">disk_ioctl</a> - Control device dependent functions</li>\r
53668523
L
115 <li><a href="en/fattime.html">get_fattime</a> - Get current time</li>\r
116</ul>\r
117</div>\r
118\r
119\r
120<div class="para">\r
121<h3>Resources</h3>\r
122<p>The FatFs module is a free software opened for education, research and development. You can use, modify and/or redistribute it for personal projects or commercial products without any restriction under your responsibility. For further information, refer to the application note.</p>\r
123<ul>\r
70702af1
L
124 <li>Read first: <a href="en/appnote.html">FatFs module application note</a> <span class="mfd">July 10, 2016</span></li>\r
125 <li>Community: <a href="http://elm-chan.org/fsw/ff/bd/">FatFs User Forum</a></li>\r
126 <li><a href="https://msdn.microsoft.com/en-us/windows/hardware/gg463080.aspx">FAT32 Specification by Microsoft</a>↗ (The authorized document on FAT file system)</li>\r
127 <li><a href="http://elm-chan.org/docs/fat.html">The basics of FAT file system [ja]</a></li>\r
128 <li><a href="http://elm-chan.org/docs/mmc/mmc_e.html">How to Use MMC/SDC</a></li>\r
129 <li><a href="http://elm-chan.org/junk/fa/faff.html">Playing with FlashAir and FatFs</a></li>\r
7b78a5a2 130 <li><a href="http://stm32f4-discovery.com/2014/07/library-21-read-sd-card-fatfs-stm32f4xx-devices/">Read SD card with FatFs on STM32F4xx devices by Tilen Majerle</a>↗ (Quick and easy implementation for STM32F4-Discovery)</li>\r
70702af1 131 <li><a href="http://nemuisan.blog.bai.ne.jp/">Nemuisan's Blog</a>↗ (Well written implementations for STM32F/SPI &amp; SDIO and LPC4088/SDMMC)</li>\r
53668523 132 <li><a href="http://www.siwawi.arubi.uni-kl.de/avr_projects/arm_projects/arm_memcards/index.html">ARM-Projects by Martin THOMAS</a>↗ (Examples for LPC2000, AT91SAM and STM32)</li>\r
70702af1
L
133 <li><a href="res/rwtest1.png">Benchmark 1</a> (ATmega1284/20MHz with MMC via USART in SPI, CFC via GPIO)</li>\r
134 <li><a href="res/rwtest2.png">Benchmark 2</a> (LPC2368/72MHz with MMC via MCI)</li>\r
53668523
L
135</div>\r
136\r
137\r
138<hr>\r
70702af1 139<p class="foot"><a href="http://elm-chan.org/fsw/ff/00index_e.html">FatFs home page</a></p>\r
53668523
L
140</body>\r
141</html>\r