aboutsummaryrefslogtreecommitdiffstats
path: root/3rdparty/petitfs-0.03/src/00readme.txt
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2014-08-15 02:22:02 +1000
committerinmarket <andrewh@inmarket.com.au>2014-08-15 02:22:02 +1000
commit75e1e7a5e26491e942fb2b25f518d8e2e3112721 (patch)
tree970754edda05d38bce1f85492868eca717820b99 /3rdparty/petitfs-0.03/src/00readme.txt
parent9b570be049bf656489bdce823f6f04beb80f053d (diff)
downloaduGFX-75e1e7a5e26491e942fb2b25f518d8e2e3112721.tar.gz
uGFX-75e1e7a5e26491e942fb2b25f518d8e2e3112721.tar.bz2
uGFX-75e1e7a5e26491e942fb2b25f518d8e2e3112721.zip
Add GFILE support for PetitFS (a very tiny FAT implementation)
Diffstat (limited to '3rdparty/petitfs-0.03/src/00readme.txt')
-rw-r--r--3rdparty/petitfs-0.03/src/00readme.txt46
1 files changed, 46 insertions, 0 deletions
diff --git a/3rdparty/petitfs-0.03/src/00readme.txt b/3rdparty/petitfs-0.03/src/00readme.txt
new file mode 100644
index 00000000..3cdb4b98
--- /dev/null
+++ b/3rdparty/petitfs-0.03/src/00readme.txt
@@ -0,0 +1,46 @@
+Petit FatFs Module Source Files R0.03 (C)ChaN, 2014
+
+
+FILES
+
+ pff.h Common include file for Petit FatFs and application module.
+ pff.c Petit FatFs module.
+ diskio.h Common include file for Petit FatFs and disk I/O module.
+ diskio.c Skeleton of low level disk I/O module.
+ integer.h Alternative type definitions for integer variables.
+
+ Low level disk I/O module is not included in this archive because the Petit
+ FatFs module is only a generic file system layer and not depend on any
+ specific storage device. You have to provide a low level disk I/O module that
+ written to control your storage device.
+
+
+
+AGREEMENTS
+
+ Petit FatFs module is an open source software to implement FAT file system to
+ small embedded systems. This is a free software and is opened for education,
+ research and commercial developments under license policy of following trems.
+
+ Copyright (C) 2014, ChaN, all right reserved.
+
+ * The Petit FatFs module is a free software and there is NO WARRANTY.
+ * No restriction on use. You can use, modify and redistribute it for
+ personal, non-profit or commercial use UNDER YOUR RESPONSIBILITY.
+ * Redistributions of source code must retain the above copyright notice.
+
+
+
+REVISION HISTORY
+
+ Jun 15, 2009 R0.01a First release (Branched from FatFs R0.07b)
+
+ Dec 14, 2009 R0.02 Added multiple code page support.
+ Added write funciton.
+ Changed stream read mode interface.
+ Dec 07,'2010 R0.02a Added some configuration options.
+ Fixed fails to open objects with DBCS character.
+
+ Jun 10, 2014 R0.03 Separated out configuration options to pffconf.h.
+ Added _USE_LCC option.
+ Added _FS_FAT16 option.