Add support for the FAT file system
The FatFs generic FAT file system module is used. Signed-off-by: Benoît Thébaudeau <benoit@wsystem.com>
This commit is contained in:
parent
062a8535ec
commit
2866ae0555
13 changed files with 37855 additions and 0 deletions
17
lib/fs/fat/option/unicode.c
Normal file
17
lib/fs/fat/option/unicode.c
Normal file
|
@ -0,0 +1,17 @@
|
|||
#include "../ff.h"
|
||||
|
||||
#if _USE_LFN != 0
|
||||
|
||||
#if _CODE_PAGE == 932 /* Japanese Shift_JIS */
|
||||
#include "unicode/cc932.c"
|
||||
#elif _CODE_PAGE == 936 /* Simplified Chinese GBK */
|
||||
#include "unicode/cc936.c"
|
||||
#elif _CODE_PAGE == 949 /* Korean */
|
||||
#include "unicode/cc949.c"
|
||||
#elif _CODE_PAGE == 950 /* Traditional Chinese Big5 */
|
||||
#include "unicode/cc950.c"
|
||||
#else /* Single Byte Character-Set */
|
||||
#include "unicode/ccsbcs.c"
|
||||
#endif
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue