summaryrefslogtreecommitdiff
path: root/lib/oofatfs/option/unicode.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2019-02-25 23:41:51 +1100
committerDamien George <damien.p.george@gmail.com>2019-03-05 15:56:39 +1100
commit1a24bac6cb3dcb7418c20040149ca19050913109 (patch)
tree80c13ad6508d36cc66a88cb70332abdbd251c86f /lib/oofatfs/option/unicode.c
parentf938e70c6905474b08f7b5e6df3da9c1b0dcf01a (diff)
lib/oofatfs: Update oofatfs library to R0.13c working branch.
From https://github.com/micropython/oofatfs, branch work-R0.13c, commit cb05c9486d3b48ffd6bd7542d8dbbab4b1caf790. Large code pages (932, 936, 949, 950) have been removed from ffunicode.c because they were not included in previous versions here.
Diffstat (limited to 'lib/oofatfs/option/unicode.c')
-rw-r--r--lib/oofatfs/option/unicode.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/oofatfs/option/unicode.c b/lib/oofatfs/option/unicode.c
deleted file mode 100644
index e48d09c6b..000000000
--- a/lib/oofatfs/option/unicode.c
+++ /dev/null
@@ -1,17 +0,0 @@
-#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 /* Single Byte Character-Set */
-#include "ccsbcs.c"
-#endif
-
-#endif