diff --git a/documents/css_e.css b/documents/css_e.css index eb21281..e1723d6 100644 --- a/documents/css_e.css +++ b/documents/css_e.css @@ -31,6 +31,7 @@ hr {border-width: 1px; margin: 1em;} div.abst {font-family: sans-serif;} div.para {clear: both; font-family: serif;} div.ret a {font-size: 0.85em; font-family: "Consolas", "Courier New", monospace; } +ul.plain {margin: 0 0 0 1em;} .equ {text-indent: 0; margin: 1em 2em 1em;} .indent {margin-left: 2em;} .rset {float: right; margin: 0.3em 0 0.5em 0.5em;} diff --git a/documents/doc/appnote.html b/documents/doc/appnote.html index 117645b..6d6095e 100644 --- a/documents/doc/appnote.html +++ b/documents/doc/appnote.html @@ -90,7 +90,7 @@ The FatFs module is a middleware written in ANSI C (C89). There is no platform d
These are the memory usage of FatFs module without lower layer on some target systems in following condition. V denotes number of mounted volumes and F denotes number of open files. Every samples here are optimezed in code size.
-FatFs R0.15b options: +FatFs R0.16 options: FF_FS_READONLY 0 (R/W, read/write) or 1 (R/O, read only) FF_FS_MINIMIZE 0 (Def, with all basic functions) or 3 (Min, with fully minimized) FF_FS_TINY 0 (Default) or 1 (Tiny file object) -And any other options are left unchanged from original setting. +Any other option is left unchanged from original settings.@@ -202,7 +202,7 @@ And any other options are left unchanged from original setting.
LBA (Logical Block Addressing) is an addressing method to specify the location of data block, called sector, on the storage media. It is a simple linear address beginning from 0 as the first sector, 1 as the second sector and so on. The host system does not need to consider how the data block is located and managed in the storage device. FatFs supports only LBA for the media access. 32-bit LBA is a common size in the most LBA scheme. It can address up to 232 sectors, 2 TB in 512 bytes/sector. When a storage device larger than 2 TB is used, larger sector size or 64-bit LBA will be needed to address the entire sectors of the storage device.
-By default, FatFs works in 32-bit LBA for media access. FatFs can also switch it to 64-bit LBA by a configuration option FF_LBA64. It also enables GPT (GUID Partition Table) for partition management on the storage device. For further information about GPT, refer to f_mkfs and f_fdisk function.
+By default, FatFs works in 32-bit LBA for media access. By configuration option FF_LBA64, it can be switched to 64-bit LBA and also GPT (GUID Partition Table) is enabled for partition management on the storage device. For further information about GPT, refer to f_mkfs and f_fdisk function.