diff options
| author | Dave Hylands | 2014-03-11 23:55:41 -0700 |
|---|---|---|
| committer | Dave Hylands | 2014-03-11 23:55:41 -0700 |
| commit | dd38d907244bc0e483c3d760f2ba464a394ec229 (patch) | |
| tree | 05869a4757c5a1b11b8baf206595551c7650f6e7 /stmhal/fatfs/src/option/unicode.c | |
| parent | 8bfec2b53822e2b62c4577b32e0beae398a16297 (diff) | |
Initial checkin with STM HAL
This compiles and links, but hasn't been tested on a board
yet and even if it was run, it doesn't currently do anything.
Diffstat (limited to 'stmhal/fatfs/src/option/unicode.c')
| -rw-r--r-- | stmhal/fatfs/src/option/unicode.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/stmhal/fatfs/src/option/unicode.c b/stmhal/fatfs/src/option/unicode.c new file mode 100644 index 000000000..16a8d961f --- /dev/null +++ b/stmhal/fatfs/src/option/unicode.c @@ -0,0 +1,17 @@ +#include "../ff.h"
+
+#if _USE_LFN != 0
+
+#if _CODE_PAGE == 932
+#include "cc932.c"
+#elif _CODE_PAGE == 936
+#include "cc936.c"
+#elif _CODE_PAGE == 949
+#include "cc949.c"
+#elif _CODE_PAGE == 950
+#include "cc950.c"
+#else
+#include "ccsbcs.c"
+#endif
+
+#endif
|
