From efa13a879df590ce0043a5b4f97597484bf264e1 Mon Sep 17 00:00:00 2001 From: inmarket Date: Wed, 13 Aug 2014 15:48:16 +1000 Subject: Move 3rd Party source to a new directory. Rationalise Fatfs code and fix a couple of configuration issues. --- 3rdparty/fatfs-0.10b/src/option/unicode.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 3rdparty/fatfs-0.10b/src/option/unicode.c (limited to '3rdparty/fatfs-0.10b/src/option/unicode.c') diff --git a/3rdparty/fatfs-0.10b/src/option/unicode.c b/3rdparty/fatfs-0.10b/src/option/unicode.c new file mode 100644 index 00000000..8b41fc2a --- /dev/null +++ b/3rdparty/fatfs-0.10b/src/option/unicode.c @@ -0,0 +1,17 @@ +#include "../ff.h" + +#if _USE_LFN != 0 + +#if _CODE_PAGE == 932 /* Japanese Shift_JIS */ +#include "cc932.c" +#elif _CODE_PAGE == 936 /* Simplified Chinese GBK */ +#include "cc936.c" +#elif _CODE_PAGE == 949 /* Korean */ +#include "cc949.c" +#elif _CODE_PAGE == 950 /* Traditional Chinese Big5 */ +#include "cc950.c" +#else /* Small character-set */ +#include "ccsbcs.c" +#endif + +#endif -- cgit v1.2.3