diff options
author | inmarket <andrewh@inmarket.com.au> | 2014-07-02 09:36:41 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2014-07-02 09:36:41 +1000 |
commit | 8a11eb71aa7e4de9b98944cac88073e71e39b7fb (patch) | |
tree | 3d629b039cc6aff4fa752fc315c56e92833c7721 /src/gfile/fatfs/fatfs.c | |
parent | dc0f291350e8f44ceaf889c559f05342feacf6c9 (diff) | |
parent | 1a2e98af967d4433e98c5fa388cb816b1af46e2d (diff) | |
download | uGFX-8a11eb71aa7e4de9b98944cac88073e71e39b7fb.tar.gz uGFX-8a11eb71aa7e4de9b98944cac88073e71e39b7fb.tar.bz2 uGFX-8a11eb71aa7e4de9b98944cac88073e71e39b7fb.zip |
Merge branch 'master' into eCos
Diffstat (limited to 'src/gfile/fatfs/fatfs.c')
-rw-r--r-- | src/gfile/fatfs/fatfs.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/gfile/fatfs/fatfs.c b/src/gfile/fatfs/fatfs.c new file mode 100644 index 00000000..fd505f08 --- /dev/null +++ b/src/gfile/fatfs/fatfs.c @@ -0,0 +1,21 @@ +/* + * This file is subject to the terms of the GFX License. If a copy of + * the license was not distributed with this file, you can obtain one at: + * + * http://ugfx.org/license.html + */ + +/** + * @file src/gfile/fatfs/fatfs.c + * @brief GFILE FATFS wrapper. + * + */ + +#include "gfx.h" + +#if GFX_USE_GFILE && GFILE_NEED_FATFS + +#include "src/ff.c" +#include "src/option/unicode.c" + +#endif // GFX_USE_GFILE && GFILE_NEED_FATFS |